ubuntu14.04中安装jupyter notebook

安装jupyter notebook有三个步骤:

1. 安装pip

apt-get install python-pip

2. 安装ipython

sudo pip install ipython

3. 安装jupyter

sudo pip install jupyter

 

问题:

1. Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-IlYp8C/tornado/
解决方法:

sudo python -m pip install --upgrade --force pip

sudo pip install setuptools==33.1.1

同时需要保证你在安装的时候是在python3的环境下,否则还是会出现以上错误

 

2. pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

解决方法:重新输入命令,再次运行,这是由于网络连接不稳定,服务器长时间不响应造成的。

 

 

参考博文:

https://blog.csdn.net/u011092188/article/details/64123561/

https://blog.csdn.net/Gavin__Zhou/article/details/52574843

你可能感兴趣的:(python,ubuntu)