菜鸟笔记
提升您的技术认知

ERROR: No matching distribution found for pandas

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

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