1. 程式人生 > 其它 >windows上python3.8安裝virtualenv遇到的一些問題

windows上python3.8安裝virtualenv遇到的一些問題

在安裝virtualenv 時,碰到了如下問題

 

 

這是由於網路不穩定,因此在安裝模組時,指定國內映象

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

其後指定的 --trusted-host pypi.douban.com 是為了獲得ssl證書的認證

 

問題:

pip安裝包的時候出現重試且無法安裝的問題

Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError


解決辦法:

在後面加入引數使用國內源

pip install selectivesearch -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
其他源總結:

阿里雲 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 web.py -i http://pypi.douban.com/simple
如果有如下報錯:


在後面增加信任host引數:

# pip install web.py -i http://pypi.douban.com/simple --trusted-host pypi.douban.com