2015-06-12 54 views
2

我试图通过浏览器登录我的笔记本电脑,但Chrome会显示无法登录“无法显示此网页提供” 我有以下我的终端上:IPython的笔记本电脑推出,但通过浏览器

[[email protected] .ipython]$ ipython notebook --profile=nbserver 
[I 11:31:38.289 NotebookApp] Using existing profile dir: u'/home/ec2-user/anaconda/.ipython/profile_nbserver' 
[I 11:31:38.295 NotebookApp] Using MathJax from CDN: https://cdn.mathjax.org/mathjax/latest/MathJax.js 
[I 11:31:38.310 NotebookApp] Serving notebooks from local directory: /home/ec2-user/anaconda/.ipython 
[I 11:31:38.311 NotebookApp] 0 active kernels 
[I 11:31:38.311 NotebookApp] The IPython Notebook is running at: https://[all ip addresses on your system]:8888/ 
[I 11:31:38.311 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation). 

人有助于弄清楚有0个活动内核是什么?我添加下面我ipython_nootbook_config.py文件

#kernel config 
c.IPkernelApp.pylab='inline' # if you want plotting support always 

#Notebook config 
c.NotebookApp.certfile=u'/home/ec2-user/anaconda/certificates/mycert.pem' 
c.NotebookApp.ip='*' 
c.NotebookApp.open_browser=False 
c.NotebookApp.password=u'sha1:0d4773e470e5:2a91dcf5a15875f15c4ad18f9d3 
4c95be563f804' 
#It is a good idea to put it on a known, fixed port 
c.NotebookApp.port=8888 
#------------------------- 

回答

1

运行内核的数量无关这一点。 您正在访问哪个页面? http://<ip>:8888?你忘了https中的s?你有代理设置? Sophos杀毒软件?在公司网络上?

相关问题