I took a new clean install of OSX 10.9.3 and installed pip, and then did
pip install pandas
pip install numpy
Both settings seemed completely happy and ran without any errors (although there was a millionth warning). When I tried to run a python script with pandas import, I got the following error:
numpy.dtype has the wrong size, try recompiling Traceback (most recent call last):
File "./moen.py", line 7, in import pandas File "/Library/Python/2.7/site-packages/pandas/__init__.py", line 6, in 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
How to fix this error and load pandas correctly?
python numpy pandas
zelinka Jun 09 '14 at 14:50 2014-06-09 14:50
source share