在 PyCharm 中安装 scipy 时出错?

Error when installing scipy in PyCharm?

尝试将 scipy 安装到 PyCharm 3.2 时出现以下错误:

正在收集scipy 使用缓存 scipy-0.19.0.zip 安装收集的包:scipy 运行 setup.py 为 scipy 安装:已开始 运行 setup.py 为 scipy 安装:已完成,状态为 'error' 命令 C:\Users\leigh\AppData\Local\Programs\Python\Python36-32\python.exe -u -c "import setuptools, tokenize;file='C:\Users\leigh\AppData\Local\Temp\pycharm-packaging\scipy\setup.py';f=getattr(tokenize, 'open', open)(file);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, file, 'exec'))" install --record C:\Users\leigh\AppData\Local\Temp\pip-8kx0fj8t-record\install-record.txt --single-version-externally-managed --compile:[= 的完整输出13=]

Note: if you need reliable uninstall behavior, then install
with pip instead of using `setup.py install`:

  - `pip install .`       (from a git repo or downloaded source
                           release)
  - `pip install scipy`   (last SciPy release on PyPI)

有人知道怎么处理吗?

我不确定,但您可能会在这个 Whosebug 线程中找到您的解决方案:Can't install Scipy through pip。 如果您的问题仍然存在,假设您使用 Windows (10),您可以尝试:

从 Github.

克隆库
git clone https://github.com/scipy/scipy.git

使用 CMD,导航到 scipy 文件夹

cd C:\..(your path)..\scipy

然后通过

安装
python setup.py install

希望对你有用!