Jupyter notebook打开后显示空白页面

jupyter notebook打开后页面空白,将域名中的localhost改为127.0.0.1后显示正常。

解决方法:

  1. 在 C:\Users\用户名.jupyter\ 路径下找到 jupyter_notebook_config.py
    若路径下无此文件,则在命令行通过以下命令生成:
jupyter notebook --generate-config

2.右键点击此文件通过IDLE/记事本打开
然后查找,browser,找到如下代码:

## Specify what command to use to invoke a web browser when opening the notebook.
#  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''

在此代码块后添加如下代码,将chrome设置为jupyter notebook默认浏览器:

import webbrowser
webbrowser.register('chrome', None, webbrowser.GenericBrowser(u'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe'))
c.NotebookApp.browser = 'chrome'

3.网页显示仍为空白,将文件中的
#c.NotebookApp.local_hostnames = [‘localhost’] 取消注释。

  • 4
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值