enter image description here我想我一步一步地遵循了巨蟒的安装说明,但问题是Jupyter笔记本不能自动打开,也就是那个网站。有没有人知道如何修复它?
发布于 2017-07-17 09:39:35
这是OS X打开默认浏览器的方式的已知错误。您应该能够只复制链接,并粘贴到浏览器地址。一切都应该正常工作。如果你想要一个更永久的修复,你可以打开位于你的主目录.jupyter/jupyter_notebook_config.py中的文件(它只是一个文本文件,但它是隐藏的,所以你需要终端或一些可以打开它的应用程序),并指定默认浏览器,如下所示:
# If not specified, the default browser will be determined by the `webbrowser`
# standard library module, which allows setting of the BROWSER environment
# variable to override it.
c.NotebookApp.browser = u'Safari'编辑:如果您找不到配置文件,可以通过在您的主目录中运行命令来生成一个:
jupyter notebook --generate-confighttps://stackoverflow.com/questions/45134802
复制相似问题