Rou*_*use 4 ipython ipython-notebook anaconda
我正在尝试在Terminal.com上安装Anaconda。我按照网站上列出的说明进行操作:https : //gist.github.com/iamatypeofwalrus/5183133
安装成功。我可以在终端上输入ipython来登录python。但是当我输入$ ipython notebook
我在终端上收到以下错误消息
[I 10:35:24.760 NotebookApp] Using existing profile dir: u'/root/.ipython/profile_default'
[I 10:35:24.872 NotebookApp] Using MathJax from CDN: https://cdn.mathjax.org/mathjax/latest
/MathJax.js
[I 10:35:24.891 NotebookApp] The port 8888 is already in use, trying another random port.
Traceback (most recent call last):
File "/root/anaconda/bin/ipython", line 6, in <module>
sys.exit(start_ipython())
File "/opt/ipython/IPython/__init__.py", line 120, in start_ipython
return launch_new_instance(argv=argv, **kwargs)
File "/opt/ipython/IPython/config/application.py", line 548, in launch_instance
app.initialize(argv)
File "<string>", line 2, in initialize
File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
return method(app, *args, **kwargs)
File "/opt/ipython/IPython/terminal/ipapp.py", line 322, in initialize
super(TerminalIPythonApp, self).initialize(argv)
File "<string>", line 2, in initialize
File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
return method(app, *args, **kwargs)
File "/opt/ipython/IPython/core/application.py", line 378, in initialize
self.parse_command_line(argv)
File "/opt/ipython/IPython/terminal/ipapp.py", line 317, in parse_command_line
return super(TerminalIPythonApp, self).parse_command_line(argv)
File "<string>", line 2, in parse_command_line
File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
return method(app, *args, **kwargs)
File "/opt/ipython/IPython/config/application.py", line 460, in parse_command_line
return self.initialize_subcommand(subc, subargv)
File "<string>", line 2, in initialize_subcommand
File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
return method(app, *args, **kwargs)
File "/opt/ipython/IPython/config/application.py", line 398, in initialize_subcommand
self.subapp.initialize(argv)
File "<string>", line 2, in initialize
File "/opt/ipython/IPython/config/application.py", line 74, in catch_config_error
return method(app, *args, **kwargs)
File "/opt/ipython/IPython/html/notebookapp.py", line 829, in initialize
self.init_webapp()
File "/opt/ipython/IPython/html/notebookapp.py", line 718, in init_webapp
self.http_server.listen(port, self.ip)
File "/root/.local/lib/python2.7/site-packages/tornado/tcpserver.py", line 125, in listen
sockets = bind_sockets(port, address=address)
File "/root/.local/lib/python2.7/site-packages/tornado/netutil.py", line 137, in bind_soc
kets
sock.bind(sockaddr)
File "/root/anaconda/lib/python2.7/socket.py", line 224, in meth
return getattr(self._sock,name)(*args)
error: [Errno 99] Cannot assign requested address
If you suspect this is an IPython bug, please report it at:
https://github.com/ipython/ipython/issues
or send an email to the mailing list at ipython-dev@scipy.org
You can print a more detailed traceback right now with "%tb", or use "%debug"
to interactively debug it.
Extra-detailed tracebacks for bug-reporting purposes can be enabled via:
c.Application.verbose_crash=True
Run Code Online (Sandbox Code Playgroud)
有人可以建议我做错了什么吗?端口8888是开放的(我可以打开端口。)
另外,要检查ipython是否可以在服务器设置下正常工作,我创建了另一个实例(总共是一个新快照),它完全按照第一行给出的github链接中的说明进行操作,我输入了以下内容:$ ipython notebook --profile = nbserver
服务器已启动。但是当我尝试在浏览器中打开时出现错误。这是我在终端上看到的
2014-08-18 10:50:54.605 [NotebookApp] Using existing profile dir: u'/root/.ipython/profile_nbserver'
2014-08-18 10:50:54.612 [NotebookApp] Using MathJax from CDN: https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js
2014-08-18 10:50:54.631 [NotebookApp] Serving notebooks from local directory: /root/.ipython/profile_nbserver
2014-08-18 10:50:54.631 [NotebookApp] 0 active kernels
2014-08-18 10:50:54.631 [NotebookApp] The IPython Notebook is running at: https://[all ip addresses on your system]:1111/
2014-08-18 10:50:54.631 [NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
WARNING:tornado.general:SSL Error on 7 ('10.0.218.170', 55369): [Errno 1] _ssl.c:510: error:1407609C:SSL routines:SSL23_GET_CLIENT_HELLO:http request
Run Code Online (Sandbox Code Playgroud)
这是我尝试打开本地系统时在浏览器中看到的内容:
502 Bad Gateway
openresty/1.5.11.1
Run Code Online (Sandbox Code Playgroud)
谢谢,劳斯
通过使用Anaconda发行版从Ubuntu Server上运行IPython / Jupyter,我遇到了类似的问题。我正在
error: [Errno 99] Cannot assign requested address
我能够通过对trtm的答案进行修改来解决此问题。我的解决方案是在配置文件中指示服务器的IP地址。此配置文件的位置取决于您使用的IPython或Jupyter Notebook版本。
文件名是ipython_notebook_config.py或jupyter_notebook_config.py。该文件可能不存在。查找或创建它取决于版本,但是编辑是相同的。
对于IPython / Jupyter版本<4.0,
使用以下命令创建文件:
ipython profile create
Run Code Online (Sandbox Code Playgroud)
文件位置为: ~/.ipython/profile_default/ipython_notebook_config.py
对于Jupyter版本> = 4.0,请使用以下命令
创建配置文件:
jupyter notebook --generate-config
Run Code Online (Sandbox Code Playgroud)
文件位置为: ~/.jupyter/jupyter_notebook_config.py
要编辑文件,请添加此行。替换服务器设置为侦听的任何IP地址。
c.NotebookApp.ip = '192.168.1.10'
Run Code Online (Sandbox Code Playgroud)
然后,我将浏览器定向到 http://192.168.1.10:8888
小智 4
ipython profile create如果您尚未创建配置文件,请运行以创建配置文件。
从配置文件文件夹中打开该ipython_notebook_config.py文件并编辑/取消注释笔记本服务器将侦听的 IP 地址。
c.NotebookApp.ip = '127.0.0.1'
| 归档时间: |
|
| 查看次数: |
6228 次 |
| 最近记录: |