windows上python3.8安装virtualenv遇到的一些问题
Posted 一切美好的,都要去追求,才能得到
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于windows上python3.8安装virtualenv遇到的一些问题的主要内容,如果未能解决你的问题,请参考以下文章
windows上python3.8安装virtualenv遇到的一些问题
使用 python 3.8 在 windows 10 上安装 django 频道和扭曲的问题