jupyter notebook打开后页面空白,将域名中的localhost改为127.0.0.1后显示正常。(推荐:jupyter使用教程)
解决方法:
1、在 C:\Users\用户名.jupyter\ 路径下找到 jupyter_notebook_config.py
若路径下无此文件,则在命令行通过以下命令生成:
jupyternotebook--generate-config
2、右键点击此文件通过IDLE/记事本打开,然后查找,browser,找到如下代码:
##Specifywhatcommandtousetoinvokeawebbrowserwhenopeningthenotebook. #Ifnotspecified,thedefaultbrowserwillbedeterminedbythe`webbrowser` #standardlibrarymodule,whichallowssettingoftheBROWSERenvironment #variabletooverrideit. #c.NotebookApp.browser=u''
在此代码块后添加如下代码,将chrome设置为jupyter notebook默认浏览器:
importwebbrowser webbrowser.register('chrome',None,webbrowser.GenericBrowser(u'C:\ProgramFiles(x86)\Google\Chrome\Application\chrome.exe')) c.NotebookApp.browser='chrome'
3、网页显示仍为空白,将文件中的
#c.NotebookApp.local_hostnames=[‘localhost’]
取消注释。
原文来自:https://www.py.cn© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容