ERROR: No matching distribution found for pandas

2023-11-13

因该是网络原因,所以利用国内镜像

pip 安装第三方库速度太慢
可设置 pip 从国内的镜像源下载安装

阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣 http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

其一:

# 临时使用

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

 其二:

# 永久设置

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

可查看配置的源 

pip config list

 

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

ERROR: No matching distribution found for pandas 的相关文章