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 上


基础教程推荐
- 筛选NumPy数组 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01