问题描述
可以将 NumPy 与点子,使用pip install numpy
.
SciPy 是否有类似的可能性? (执行pip install scipy
无效.)
Is there a similar possibility with SciPy? (Doing pip install scipy
does not work.)
更新
SciPy软件包现在可以与pip
一起安装!
The package SciPy is now available to be installed with pip
!
推荐答案
尝试easy_install
表示其 Python包索引中的"rel =" noreferrer>列出. /p>
An attempt to easy_install
indicates a problem with their listing in the Python Package Index, which pip searches.
easy_install scipy
Searching for scipy
Reading http://pypi.python.org/simple/scipy/
Reading http://www.scipy.org
Reading http://sourceforge.net/project/showfiles.php?group_id=27747&package_id=19531
Reading http://new.scipy.org/Wiki/Download
然而,一切并没有丢失; pip
可以从 Subversion (SVN), Git , Mercurial 和 Bazaar 存储库. SciPy使用SVN:
All is not lost, however; pip
can install from Subversion (SVN), Git, Mercurial, and Bazaar repositories. SciPy uses SVN:
pip install svn+http://svn.scipy.org/svn/scipy/trunk/#egg=scipy
更新(2012年12月12日):
Update (12-2012):
pip install git+https://github.com/scipy/scipy.git
由于NumPy是依赖项,因此也应该安装它.
Since NumPy is a dependency, it should be installed as well.
这篇关于用pip安装SciPy的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!