1
pzhang 2017-07-23 21:51:40 +08:00
用 whl 文件升级一下 setuptools 试试?
|
2
lzhr 2017-07-23 21:56:38 +08:00
经常出错,装个 anaconda 吧
|
3
rabbbit 2017-07-23 22:02:57 +08:00 1
http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy 下载相应版本的 .whl 文件
pip install wheel pip install scipy ‑ 0.19.1 ‑ cp27 ‑ cp27m ‑ win32.whl |
4
sadscv 2017-07-23 22:31:41 +08:00 via Android 2
别折腾,用 anaconda。
既然你用了 scipy 肯定还会用到其他的科学计算包,conda 解决无穷后患,你的时间很宝贵。 |
5
xrlin 2017-07-23 22:46:04 +08:00 via Android
conda+1
|
6
shiroming 2017-07-23 23:08:30 +08:00 via Android
miniconda
|
7
bravecarrot 2017-07-23 23:21:29 +08:00 via iPhone
3l 的方法可行 试过
不过,最好的办法还是 anaconda |
8
PythonAnswer 2017-07-23 23:41:07 +08:00 via Android
这种科学计算的 conda 一步到位
|
9
zhusimaji 2017-07-24 07:56:26 +08:00 via iPhone
一直坚挺 anaconda
|
10
NaVient 2017-07-24 09:07:22 +08:00
https://anaconda.org/ 你可能需要这个
|
11
CryMeatel 2017-07-24 11:35:20 +08:00
Win 上用 anaconda,一个包装优化过的 Python 环境,可以很大程度上避免这种问题……
|
12
Technetiumer 2017-07-24 14:20:07 +08:00 via Android
建议 anaconda
miniconda 都各种 报错 崩溃 不稳定,pip 甭想了 |
13
gladuo 2017-07-24 23:41:33 +08:00
win 上如果没有搜到 binary 包理论上是装不上 scipy 的,放弃吧
|
14
dragon231 2017-08-14 20:32:27 +08:00
参照 https://stackoverflow.com/questions/2213551/installing-scipy-with-pip
``` To install scipy on windows follow these instructions:- Step-1 : Press this link http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy to download a scipy .whl file (e.g. scipy-0.17.0-cp34-none-win_amd64.whl). Step-2: Go to the directory where that download file is there from the command prompt (cd folder-name ). Step-3: Run this command: pip install scipy-0.19.1-cp36-cp36m-win_amd64.whl ``` |
15
yeyu1989 OP 谢谢各位啊
已安装 anaconda |