美文网首页
anaconda pip install使用镜像

anaconda pip install使用镜像

作者: 子衿qa | 来源:发表于2020-03-07 22:58 被阅读0次

python:pip install pandas报错

Could not find a version that satisfies the requirement numpy (from versi

#报错:

Could not fetch URL https://pypi.python.org/simple/numpy/: There was a problem confirming the ssl certificate: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:661) - skipping

Could not find a version that satisfies the requirement numpy (from versions: )

No matching distribution found for numpy

####解决方法####

使用国内镜像

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

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

pip install scipy==1.2.1 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

————————————————

版权声明:本文为CSDN博主「小小米乐」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/yanwenyuan0304/article/details/86072970

(python pip安装第三方库超时问题(raise ReadTimeoutErrorself._pool, None, ‘Read timed out.’)

pip工具安装

百度经验链接: pip安装及环境变量配置.

pip下载超时处理

aise ReadTimeoutError(self._pool, None, ‘Read timed out.’)

方案一:对于比较小的库,可以延时处理

-------- pip --default-timeout=100 install -U pip

-------- pip --default-timeout=100 install 第三方库名

方案二:更换安装源

------------网上可以查找很多豆瓣源

如https://pypi.tuna.tsinghua.edu.cn/simple/

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyecharts

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 库名

出错使用这种 :pip install --index-url https://pypi.tuna.tsinghua.edu.cn/simple/ lightgbm

方案三:下载离线包

python所有库:(https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml)

---------然后通过pip install 保存路径/加上下载的文件名 进行安装

(如pip install C:\Users\HP\Desktop\scikit_image-0.14.1-cp37-cp37m-win32.whl)

————————————————

版权声明:本文为CSDN博主「枫-凡」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/qq_40925385/article/details/83753598

相关文章

网友评论

      本文标题:anaconda pip install使用镜像

      本文链接:https://www.haomeiwen.com/subject/odbkdhtx.html