Mac OS X 10.6.8에 Python Pandas 라이브러리 (0.8.1)를 설치하고 싶습니다. 이 라이브러리에는 Numpy> = 1.6이 필요합니다.Python Numpy/Pandas 설치를 수정하는 방법은 무엇입니까?
나는이
$ sudo easy_install pandas
Searching for pandas
Reading http://pypi.python.org/simple/pandas/
Reading http://pandas.pydata.org
Reading http://pandas.sourceforge.net
Best match: pandas 0.8.1
Downloading http://pypi.python.org/packages/source/p/pandas/pandas-0.8.1.zip#md5=d2c5c5bea971cd760b0ae6f6850fcb74
Processing pandas-0.8.1.zip
Running pandas-0.8.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-ckAMym/pandas-0.8.1/egg-dist-tmp-0mlL7t
error: Setup script exited with pandas requires NumPy >= 1.6 due to datetime64 dependency
그래서 NumPy와
$ sudo easy_install numpy
Searching for numpy
Best match: numpy 1.6.2
Adding numpy 1.6.2 to easy-install.pth file
Using /Library/Python/2.6/site-packages
Processing dependencies for numpy
Finished processing dependencies for numpy
를 설치하려고 시도 그래서 나는 다시
$ sudo easy_install pandas
시도 그러나 문제는 여전히 동일합니다!
error: Setup script exited with pandas requires NumPy >= 1.6 due to datetime64 dependency
나는 그래서 NumPy와 1.6이 제대로 설치 될 것 같습니다하지 않습니다 파이썬
$ python
Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49)
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np
>>> np.__version__
'1.2.1'
실행!
나는 내가 또한 NumPy와 http://sourceforge.net/projects/numpy/files/ NumPy와의 바이너리 버전을 설치하려고
$ sudo pip install numpy --upgrade
Requirement already up-to-date: numpy in /Library/Python/2.6/site-packages
Cleaning up...
$ sudo pip install pandas
Downloading/unpacking pandas
Downloading pandas-0.8.1.zip (1.9MB): 1.9MB downloaded
Running setup.py egg_info for package pandas
pandas requires NumPy >= 1.6 due to datetime64 dependency
Complete output from command python setup.py egg_info:
pandas requires NumPy >= 1.6 due to datetime64 dependency
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /tmp/pip-build/pandas
Storing complete log in /Users/MyUsername/Library/Logs/pip.log
--upgrade
플래그를 추가
$ sudo pip install numpy
Requirement already satisfied (use --upgrade to upgrade): numpy in /Library/Python/2.6/site-packages
Cleaning up...
(대신 easy_install
의) pip
와 NumPy와 1.6을 설치하려고 -1.6.2-py2.6-python.org-macosx10.3.dmg하지만 실패했습니다 !!! (설치 프로그램에서 numpy 1.6.2를 설치할 수 없다고 말했습니다.) Numpy는 python.org Python 2.6이 필요합니다.
이전에 설치하지 않았습니까? 어쩌면 그게 엉망이 될지도 몰라. numpy를 제거한 다음 최신 버전을 다시 설치해야합니다. – Bakuriu
Numpy 버전 1.2.1 이전 버전이 있지만이 버전의 설치 방법 (소스, easy_install, pip, binary ...)을 기억하지 못합니다. 매우 이상한 것은 바이너리를 설치할 수 없다는 것입니다. (방금 편집 한 내 게시물의 마지막 부분을보십시오) – scls
NumPy 1.2.1은 어디에 설치되어 있습니까 ('numpy를 np; np로 인쇄합니까?)? EPDFree 또는 Anaconda CE와 같은 패키지 배포판을 사용하고 가능한 경우 Apple 시스템 Python을 피할 것을 제안합니다. –