ipython notebook에서 pandas 사용할 때 다음 에러가 발생했다.
numpy.dtype has the wrong size, try recompiling
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Python/2.7/site-packages/pandas/__init__.py", line 6, in <module>
from . import hashtable, tslib, lib
File "numpy.pxd", line 157, in init pandas.hashtable (pandas/hashtable.c:22331)
ValueError: numpy.dtype has the wrong size, try recompiling
버전은 최신이라서 문제가 없는 것 같았다.
$ pip show pandas
---
Name: pandas
Version: 0.16.2
Location: /Library/Python/2.7/site-packages
Requires: numpy, python-dateutil, pytz
$ pip show numpy
---
Name: numpy
Version: 1.9.2
Location: /Library/Python/2.7/site-packages/numpy-1.9.2-py2.7-macosx-10.9-intel.egg
Requires:
pip uninstall 해도 진전이 없다가 다음 싸이트에서 보고, 따라하니(easy_install 설치) pandas를 잘 사용할 수 있었다.
'python' 카테고리의 다른 글
pythonic 이란. (0) | 2015.08.25 |
---|---|
[ipython] Pandas 라이브러리 사용시 좋은 레퍼런스 (0) | 2015.07.07 |
[ipython] 설치 & 테스트 (0) | 2015.07.03 |
python- 하나의 파일에서 라인을 읽어서 다른 파일에 똑같은 파일이 있는지 비교하는 코드 (1) | 2012.10.25 |
[Go Language] 링크 모음 (0) | 2010.06.10 |