赞
踩
ERROR: Could not find a version that satisfies the requirement re ( from versi ons: none)
ERROR: No matching distribution found for re
ERROR: Could not find a version that satisfies the requirement re ( from versi ons: none)
ERROR: No matching distribution found for re
这个错误通常是由于缺少所需的Python模块或版本不兼容导致的。
下滑查看解决方法
确认你的Python版本是否正确。某些模块可能需要特定版本的Python才能正常工作。
确认你的pip版本是否正确。在命令行中输入“pip -V”可以检查pip的版本。如果版本过低,可以通过“python -m pip install --upgrade pip”命令升级pip。
3.*** 确认你的模块名称是否正确。有时候,拼写错误或大小写错误会导致pip无法找到所需的模块。
尝试使用“pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org 模块名称”命令安装模块。这个命令可以忽略SSL证书验证,有时候可以解决下载模块的问题。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。