Scipy not installing on Pycharm(Scipy 未安装在 Pycharm 上)
问题描述
一段时间以来,我一直在尝试从 PyCharm 安装 SciPy.我曾尝试使用内置软件包安装程序,但它会失败.我也尝试安装为 .whl 并运行为
I have been trying to install SciPy from PyCharm for some time. I have tried using the in-built package installer, however it would fail. Also I tried installing as a .whl and running as
Pip install scipy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
那也会失败.目前不确定从这里前进的方向.我使用 Windows 10,目前正在使用 Python 3.10 64 位.即将出现的错误消息是
and that would fail too. Currently unsure where to move forward from here. I use Windows 10 and am currently using Python version 3.10 64 bit. The error message that is coming up is
ERROR: scipy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl is not a supported wheel on this platform.
推荐答案
这可能是因为 Scipy 不支持 Python 3.10(目前).scipy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl 是出现在 PyPI.我猜 PyCharm 很困惑,并试图找到一个兼容的轮子.
This may be caused because Scipy is not supporting Python 3.10 (yet). scipy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl is the first wheel that appears on PyPI. I suppose that PyCharm got confused, and tried to find a compatible wheel.
您必须等待 Scipy 开发人员发布兼容版本(似乎他们正在等待解决一些问题).同时,您可以尝试较低的 Python 版本(Python 3.9 怎么样?)
You have to wait for a compatible release from the Scipy developers (seems like they are waiting for some issues to be resolved). In the meantime, you can try a lower Python version (what about Python 3.9?)
这篇关于Scipy 未安装在 Pycharm 上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Scipy 未安装在 Pycharm 上
基础教程推荐
- Kivy 使用 opencv.调整图像大小 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
