2014-09-23 3 views
0

나는 easy_install을 사용하여 Cygwin에서의 (Win8-64를) scipy를 설치하려고 내가 오류 같은 종류가 있습니다Cygwin에서 easy_install을 scipy 오류

$ easy_install scipy 
Searching for scipy 
Reading http://pypi.python.org/simple/scipy/ 
Best match: scipy 0.14.0 
Downloading https://pypi.python.org/packages/source/s/scipy/scipy-  0.14.0.zip#md5=7ee4fa9e756bab6b46b79f77c821cb68 
Processing scipy-0.14.0.zip 
Writing /tmp/easy_install-22pYld/scipy-0.14.0/setup.cfg 
Running scipy-0.14.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-22pYld/scipy-0.14.0/egg-dist-tmp-q32R1Y 
/usr/lib/python2.7/site-packages/numpy/distutils/system_info.py:1504: UserWarning: 
Atlas (http://math-atlas.sourceforge.net/) libraries not found. 
Directories to search for the libraries can be specified in the 
numpy/distutils/site.cfg file (section [atlas]) or by setting 
the ATLAS environment variable. 
warnings.warn(AtlasNotFoundError.__doc__) 
/usr/lib/python2.7/site-packages/numpy/distutils/system_info.py:1513: UserWarning: 
Blas (http://www.netlib.org/blas/) libraries not found. 
Directories to search for the libraries can be specified in the 
numpy/distutils/site.cfg file (section [blas]) or by setting 
the BLAS environment variable. 
warnings.warn(BlasNotFoundError.__doc__) 
/usr/lib/python2.7/site-packages/numpy/distutils/system_info.py:1516: UserWarning: 
Blas (http://www.netlib.org/blas/) sources not found. 
Directories to search for the sources can be specified in the 
numpy/distutils/site.cfg file (section [blas_src]) or by setting 
the BLAS_SRC environment variable. 
warnings.warn(BlasSrcNotFoundError.__doc__) 
merror: 
Blas (http://www.netlib.org/blas/) libraries not found. 
Directories to search for the libraries can be specified in the 
numpy/distutils/site.cfg file (section [blas]) or by setting 
the BLAS environment variable. 

내가 무엇이 잘못되었는지 owin 내에서 그것을 알아낼 수 없습니다를 . 여기에 도움이 될 것입니다.

scipy의 성공적인 설치로 인해 Python2.7 또는 Python3 (둘 다 필요함)에 대한 설치 라이브러리가 생겼는지 궁금합니다.

어떤 도움이 필요합니까? 미리 감사드립니다.

내가 지금까지했던 어떤 :

  • setup.exe를 (libgfortranlib, GCC-포트란 등)를 통해 모든 FORTRAN 라이브러리를 설치

  • @abarnert의 도움으로 후

  • pip2.7 설치 scipy
  • pip3.2 설치 scipy

이 유형의 설치 중에 문제가 발생하지 않았습니다.

error: Blas (http://www.netlib.org/blas/) libraries not found.

을 그리고 심지어 어떻게 오류를 해결하는 방법을 설명합니다 :

답변

2

끝의 오류가 꽤 명확한 것 같다. 너는 그걸 넘어서 너에게 뭐라 구요?

Cygwin의 설정 응용 프로그램의 일부로 BLAS 라이브러리가있을 수 있습니다. 그렇지 않은 경우 오류 메시지에 링크 된 URL로 이동하여 직접 BLAS를 다운로드하십시오.


한편, 이것은 완전히 별개의 질문에도 불구하고, 나는 그것을 답변 해 드리겠습니다 : 그것은 실행중인 easy_install하는에 따라

I also wonder if the successful installation of scipy will result in installation libraries for python2.7 or for python3 both of which I have in me PC (I need both)?

. 가장 간단한 방법은 추측하거나 파악하지 않고, 단지 easy_install-2.7easy_install-3.4 (또는 어느 버전이든)을 명시 적으로 사용하는 것입니다.

그러나 처음에는 easy_install을 사용해서는 안됩니다. 대신 Python Packaging User Guideofficial Python docs에서 권장하는 방법을 사용하지 않는 한 pip을 사용하십시오.

+0

Thx, 네 말이 맞아! – somename