pip安装第三方库时走过的坑

使用pip安装pandas库时出错


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

No matching distribution found for pandas

报错如下:

在博客多次尝试后仍未解决,报错的内容变了

我用是python3.8版本


尝试多种方法,无果。

遂卸载,重装

出现的问题又不一样了


于是再次使用镜像地址装了一次,成功了!!!

说来可真奇怪,之前也试过几次用镜像地址装,就这次成功了。

解决方法:

用镜像地址安装 

pip install --index https://pypi.tuna.tsinghua.edu.cn/simple pandas

清华大学的这个挺快的

提供几个pip源:

阿里云 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/

你可能感兴趣的:(pip安装第三方库时走过的坑)