ERROR: Could not find a version that satisfies the requirement scipy (from versions: none) ERROR: No matching distribution found for scipy
时间: 2023-11-09 19:09:26 浏览: 167
这个错误提示表示无法找到与当前环境匹配的 scipy 版本,可能是因为你的 Python 环境没有安装 scipy 库。
你可以尝试使用 pip 命令安装 scipy:`pip install scipy`
如果你已经使用了 pip 安装了 scipy,但仍然出现这个错误,可以尝试升级 pip 和 setuptools:`pip install --upgrade pip setuptools`
如果仍然无法解决问题,可以考虑使用 Anaconda 或者 Miniconda 来创建一个新的 Python 环境,在这个环境中安装 scipy 库。
阅读全文