我想在我的笔记本电脑中实现Sugyan Tensorflow Mnist。它是一个数字识别系统的实现。
我正在使用ubuntu 16.04 LTS。我已从requirements.txt安装了所有要求。
接下来我应该完成哪些步骤? 如何使用npm install?
在终端中执行npm install命令后,我收到此警告。
aniruddh@Aspire-5742Z:~/Desktop/tensorflow-mnist-master$ npm install
> tensorflow-mnist@1.0.0 postinstall /home/aniruddh/Desktop/tensorflow-mnist-master
> gulp
[11:29:47] Using gulpfile ~/Desktop/tensorflow-mnist-master/gulpfile.js
[11:29:47] Starting 'build'...
[11:29:48] Finished 'build' after 883 ms
[11:29:48] Starting 'default'...
[11:29:48] Finished 'default' after 27 μs
npm WARN tensorflow-mnist@1.0.0 No repository field.
aniruddh@Aspire-5742Z:~/Desktop/tensorflow-mnist-master$gunicorn main:app --log-file=-
[2016-12-15 12:34:49 +0530] [6108] [INFO] Starting gunicorn 19.6.0
[2016-12-15 12:34:49 +0530] [6108] [INFO] Listening at: http://127.0.0.1:8000 (6108)
[2016-12-15 12:34:49 +0530] [6108] [INFO] Using worker: sync
[2016-12-15 12:34:49 +0530] [6111] [INFO] Booting worker with pid: 6111
在此之后,它刚刚被困在这里。
我该如何纠正这个问题?
答案 0 :(得分:2)
感谢您对我的存储库感兴趣。
npm install
是生成static/js/main.js
的命令。警告消息可以忽略。
如果已创建static/js/main.js
,只需运行gunicorn main:app --log-file=-
命令并在浏览器中访问localhost:8000。