ubuntu 安装jupyster报错

问题描述

在Ubuntu 16.04中使用sudo pip install jupyter,安装jupster时报错

jsonschema 3.0.1 has requirement six>=1.11.0, but you’ll have six 1.10.0 which is incompatible.
使用jupyter notebook运行jupyter时出现错误:UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xe5 in position 4: ordinal not in range 128

问题分析

很明显这是一个编码的问题。
奇怪的是,使用同样的方法在英文版Ubuntu 16.04中就没出现这个问题,在中文版中就存在这个问题。因此这个问题应该和系统版本有关。

解决办法


使用pip3重新安装了jupyter,解决了问题。
具体做法:
  1. 卸载jupyter和附加项

sudo pip uninstall jupyter
sudo pip uninstall jupyter-core
sudo pip uninstall jupyter-console
sudo pip uninstall jupyter-client

  1. 没有pip3的话,安装pip3

sudo apt install python3-pip

  1. 安装jupyter

sudo pip3 install jupyter

  1. 安装完成后,运行jupyter

jupyter notebook

成功跳出网页。

你可能感兴趣的:(ubuntu)