在PyCharm中安装scipy时出错?

时间:2017-03-18 00:42:19

标签: scipy pycharm sklearn-pandas

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

收集scipy   使用缓存的scipy-0.19.0.zip 安装收集的软件包:scipy   为scipy运行setup.py install:已启动     为scipy运行setup.py install:完成状态为“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(编译(代码,文件,'exec'))“install --record C:\用户\ leigh \ AppData \ Local \ Temp \ pip-8kx0fj8t-record \ install-record.txt --single-version-external-managed --compile:

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)

有谁知道如何处理这个?

1 个答案:

答案 0 :(得分:1)

我不确定,但您可以在此stackoverflow主题中找到您的解决方案: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

希望它适合你!