I am facing some serious resistance with pandas
and specifically numpy
. When I try to run my current python program, I receive the following message:
ImportError: this version of pandas is incompatible with numpy < 1.9.0
your numpy version is 1.8.0rc1.
Please upgrade numpy to >= 1.9.0 to use this pandas version
I tried to upgrade numpy
with:
pip install --upgrade --force-reinstall numpy
But then I receive the following error:
OSError: [Errno 1] Operation not permitted:
'/var/folders/jh/xdhjqn1x3f32tt0s0yqyh0dm0000gn/T/pip-mqbUP3-
uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy-1.8.0rc1-py2.7.egg-info'
Based off of what I have seen and read online, I really am not positive what the issue is.