问题描述
我已经在Mac osx10.9.4上通过macport安装了py27,ipython和Notebook.
I have installed py27 and ipython and notebook by macport on my mac osx10.9.4.
我可以打开ipython,它可以正常工作,但是我不能打开ipython笔记本.
I can open ipython and it works fine but I cannot open ipython notebook.
输入后
ipython notebook
我明白了
如果您怀疑这是IPython错误,请在以下位置报告: https://github.com/ipython/ipython/issues 或将电子邮件发送到邮件列表在ipython-dev@scipy.org
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
您现在可以使用%tb"打印更详细的追溯,或使用 %debug"进行交互式调试.
You can print a more detailed traceback right now with "%tb", or use "%debug" to interactively debug it.
可以启用出于错误报告目的的详细回溯 通过: c.Application.verbose_crash = True
Extra-detailed tracebacks for bug-reporting purposes can be enabled via: c.Application.verbose_crash=True
反正有我的笔记本启动吗?
Is there anyway to get my notebook started?
推荐答案
这似乎与ipython ip套接字问题有关.经过验证的解决方法:
This appears to be related to ipython ip socket issues. A verified workaround:
ipython notebook --ip=127.0.0.1
在 https://github.com/ipython/ipython/issues上显示
这篇关于无法启动ipython笔记本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!