美文网首页
Python ERROR: Could not find a v

Python ERROR: Could not find a v

作者: Rinaloving | 来源:发表于2023-12-30 20:23 被阅读0次

错误

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

解决

  • 升级 pip
 python.exe -m pip install --upgrade pip
  • 安装 pandas
 pip install pandas -i https://pypi.tuna.tsinghua.edu.cn/simple/
image.png
  • 其它源:

国内常用镜像源
清华大学 :https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科学技术大学 :http://pypi.mirrors.ustc.edu.cn/simple/
华中科技大学:http://pypi.hustunique.com/
豆瓣源:http://pypi.douban.com/simple/
腾讯源:http://mirrors.cloud.tencent.com/pypi/simple
华为镜像源:https://repo.huaweicloud.com/repository/pypi/simple/

后续

  • ImportError: Missing optional dependency 'openpyxl'. Use pip or conda to install openpyxl.


    image.png
image.png
  • 安装 openpyxl
pip3 install openpyxl

相关文章

网友评论

      本文标题:Python ERROR: Could not find a v

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