简体   繁体   English

如何安装Sugyan-Tensorflow-MNIST?

[英]How do I install Sugyan-Tensorflow-MNIST?

I want to implement Sugyan Tensorflow Mnist in my laptop .It is an implementation of number recognition system. 我想在笔记本电脑中实现Sugyan Tensorflow Mnist 。这是数字识别系统的实现。

I am using ubuntu 16.04 LTS.I have all requirements installed from requirement.txt . 我正在使用ubuntu 16.04 LTS。我已经从require.txt安装了所有需求。

What all steps should I go through next? 接下来我应该完成所有什么步骤? How to use npm install? 如何使用npm install?

After I execute npm install command in the terminal I get this warning. 在终端中执行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

And after this its just Stuck here. 在此之后,它就停留在这里。

How do I rectify this? 我该如何纠正?

Thank you for your interest in my repository. 感谢您对我的存储库的关注。

npm install is a command to generate static/js/main.js . npm install是用于生成static/js/main.js的命令。 Warning messages can be ignored. 警告消息可以忽略。

If static/js/main.js has been created, just run gunicorn main:app --log-file=- command and access the localhost:8000 in your browser. 如果已创建static/js/main.js ,则只需运行gunicorn main:app --log-file=-命令并在浏览器中访问localhost:8000。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM