vagrant and ubunutu: pip install jupyter error: Storing debug log for failure in /home/vagrant/.pip/pip.log

↘锁芯ラ 提交于 2019-12-06 03:37:37

I solved it. Since the pip version is 1.5.4 (you can confirm it by pip -V), upgrade pip is necessary. At the beginning, I can't upgrade pip with: pip install --upgrade pip. I used another way to upgrade pip (https://askubuntu.com/questions/775942/how-to-install-the-latest-version-of-pip-when-i-already-installed-the-provided-b):

wget https://pypi.python.org/packages/e7/a8/7556133689add8d1a54c0b14aeff0acb03c64707ce100ecd53934da1aa13/pip-8.1.2.tar.gz
tar -xzvf pip-8.1.2.tar.gz
cd pip-8.1.2
sudo python setup.py install

then upgrade to latest version of pip by: pip install --upgrade pip

then I can install jupyter by: sudo pip install jupyter.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!