Jupyter Notebook安装

Python 3 :

python3 -m pip install --upgrade pip
python3 -m pip install jupyter

Python 2:

python -m pip install --upgrade pip
python -m pip install jupyter

matplotlib 安装

sudo apt-get install python-matplotlib

或者 pip安装

pip install matplotlib

遇到的问题

1)问题:ImportError: No module named matplotlib

解决:

安装 matplotlib
pip install matplotlib

2)问题:Jupyter 启动在服务器上远程无法访问

解决:用--ip 指定ip即可

jupyter notebook --ip=10.10.101.2

相关文章:

  • 2021-04-07
  • 2021-09-02
  • 2022-12-23
  • 2021-06-22
  • 2021-09-06
  • 2021-08-01
  • 2021-09-23
  • 2021-06-15
猜你喜欢
  • 2021-07-20
  • 2022-01-06
  • 2022-12-23
  • 2021-07-23
  • 2021-05-07
  • 2022-12-23
  • 2021-06-10
相关资源
相似解决方案