after messing around a bit I now have this error when importing pandas
: RuntimeError: module compiled against API version 9 but this version of numpy is 6
(details below). On a long term, this should be solved using virtualenv
. On a short term, do you know how should I fix this?
>>> import pandas
RuntimeError: module compiled against API version 9 but this version of numpy is 6
albusdemensalbusdemens
asked Mar 23, 2014 at 8:58
1 Answer 1
What version python? Rebuild/reinstall numpy?
pip uninstall numpy; pip install numpy
answered Mar 23, 2014 at 9:27
Sign up to request clarification or add additional context in comments.
1 Comment
albusdemens
I ended up installing Anaconda, so now I have some new problem (cv2 does not load). Thanks by the way!
lang-py