解决:Anaconda安装pandas等包时遇到ERROR: Could not find a version that satisfies the requirement pandas

遇到的问题

pip install pandas

安装遇到如下问题

解决

是由于pip没有更新引起的问题。输入python -m pip install --upgrade pip可能会引起超时的问题 如下
在这里插入图片描述
所以我直接用了清华镜像源,亲测好用,输入

python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip
#更新pip

更新成功
解决:Anaconda安装pandas等包时遇到ERROR: Could not find a version that satisfies the requirement pandas_第1张图片

安装pandas

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas
#同样利用了镜像源

安装成功
解决:Anaconda安装pandas等包时遇到ERROR: Could not find a version that satisfies the requirement pandas_第2张图片
如果还是出现超时的问题,多试几次就好啦

你可能感兴趣的:(pip,python,anaconda,深度学习,机器学习)