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 上
基础教程推荐
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
