安装并运行jupyter notebook出现的各种bug及安装方法!

windows默认编码:gbk

ubuntu默认编码:utf-8

二 

安装jupyter notebook的核心命令:

sudo python3 -m pip install --upgrade pip

sudo python3 -m pip install jupyter

备注:必须要求是python3进行安装,否则会报编码错误,如下所示:

UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position 4: ordinal not in range (128)

如果python3安装jupyter notebook报如下错误:

/usr/bin/pip3:No module named pip

上述错误由于没有装pip3导致。

你要安装的是python3-pip
linux下直接使用sudo apt-get install python3-pip

参考文章:https://blog.csdn.net/kansas_jason/article/details/82834409

si 

xinlingshou1@hjimi:~$ sudo pip3 install --upgrade pip
Traceback (most recent call last):
  File "/usr/bin/pip3", line 9, in
    from pip import main
ImportError: cannot import name 'main'
 

https://blog.csdn.net/zong596568821xp/article/details/80410416

四、windows下安装完jupyter notebook运行报错IOPub data rate exceeded

安装并运行jupyter notebook出现的各种bug及安装方法!_第1张图片

解决方案:

1、在cmd中输入:jupyter notebook --generate-config,可以看到生成一个路径

2、找到cmd上显示的路径的文件,在其中找到iopub_data_rate_limit

3、将iopub_data_rate_limit注释掉并在后面加很多0

参考文章:

https://blog.csdn.net/Mr_Brooks/article/details/80431925

https://blog.csdn.net/LaoChengZier/article/details/80705298

你可能感兴趣的:(安装并运行jupyter notebook出现的各种bug及安装方法!)