python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

一、启动notebook服务器后,遇到的错误问题
浏览器页面不能弹出显示
出现这个原因是因为你没有指定一个浏览器来打开jupyter notebook,这就导致jupyter notebook不知如何进入网页,这种情况的出现一般因为电脑上存在两个浏览器导致的,所以只要把其中一个设为默认浏览器就可以了。详细见这里:Jupyter Notebook不能使浏览器弹出问题之一
报错:ImportError: cannot import name ‘ensure_dir_exists’
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

需要从终端手动更新 jupyter_core and jupyter_client如下
conda update jupyter_core jupyter_client
出现下面这个报错,可以不用管,直接关闭右上角插号即可。原因是因为:
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

notebook启动后,浏览器中的页面出现空白
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

解决办法是:换个浏览器
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

启动notebook时,在页面需要输入密码
【python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法】python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

出现报错:AttributeError: type object IOLoop has no attribute initialized
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

解决办法:
Kerenel找不到如下图:
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

如何修改noteboo工作文件夹?
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

之前在猴子:初学python者自学anaconda的正确姿势是什么?? 有聊到notebook工作文件夹,后面你很多的新建的notebook都在该文件夹下,比如我的“notebook工作文件夹”就是自己新建了一个空的文件夹用于存放我的项目:c\houzi
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

但是很多时候默认的“notebook工作文件夹”不是一个空的文件夹,不便于我们的数据分析工作,如何修改你的“notebook工作文件夹”呢?
有2个办法可以解决,选择下面其中一个适合你的方法就可以:
方法1:windows系统在菜单栏里修改
在下图3的地方点击鼠标右键,选择属性。
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

将下图1和2的地方都替换成,你自己的“notebook工作文件夹”(最好是自己新建个空的文件夹,然后路径修改成这个文件夹的路径)修改后记得保存文件。
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

例如 我自己电脑上新建的一个空文件夹是c:\houzi,修改后如下:
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

修改后点击”确定”按钮,然后再启动notebook就生效了。
方法2:通过配置文件修改,只适合从命令行启动notebook
1)在Anaconda Prompt终端中输入下面命令,查看你的notebook配置文件在哪里:
jupyter notebook –generate-config
根据你运行实际显示的路径,打开这个配置文件(可以用notepad++软件打开各种格式的文件),我电脑上是这个文件C:\Users\用户\.jupyter\jupyter_notebook_config.py
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

ps:Notepad++可以打开各种文件格式,作为一款小巧轻量且强大的编辑工具,也被中国开发者广泛使用。
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

2)通过搜索关键词:c.NotebookApp.notebook_dir,定位到下面这行
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

然后修改成以下你自己的“notebook工作文件夹”(最好是自己新建个空的文件夹,然后路径修改成这个文件夹的路径)修改后记得保存文件。
这里一定要注意哦,要去掉这行前面的#(#在表示注释掉不起作用),不同操作系统的电脑路径不一样,windows是双斜杠(\\),linux是反斜杠(/),Mac路径最好自己百度下。
另外,设置的时候,所有的内容都必须是英文状态下的,并且你设置的这个文件夹是已经存在的。
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

3)记得修改后最后要重启notebook服务器让修改生效
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

二、为什代码需要每次重新运行?
启动notebook服务器后没事不要关闭服务器,不然关闭服务器后,代码还的重新运行。
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

三、安装包,但是import后显示没有这个包
正确安装包是:
1、进入你当前noteboo所在python环境下,例如:
#进入环境名为py3的环境下
activate py3
2、在当前环境下再安装包
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

四、notebook卡死问题
重启notebook服务器或者换个浏览器
python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

python|python jupyter notebook运行没反应_jupyter notebook常见问题解决办法
文章图片

    推荐阅读