pip安装软件包题及解决方法

参考网站:1.https://blog.csdn.net/qq_42466324/article/details/104594472

                  2.https://blog.csdn.net/weay/article/details/82261442

通常可在pypi网站上下载软件包,然后source activate ***切换到自己的环境,然后利用pip install ***name-pag*** 进行安装;

有时安装离线包时存在联网问题即:

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno 101] Network is unreachable')': /simple/werkzeug/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno 101] Network is unreachable')': /simple/werkzeug/

可通过

pip install *** -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

进行安装,***代表软件包名称

 然后通过pip list 列出所有已安装的软件包名称,查看是否安装成功。

 

这些安装的数据包好几个网站都有镜像:

阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 
豆瓣(douban) http://pypi.douban.com/simple/ 
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
使用方法很简单,直接 -i 加 url 即可!如下:
pip install *** -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

你可能感兴趣的:(pip安装软件包题及解决方法)