It's been so hard to find solution for this problem.
I've been reading on the internet and found this questions on Stackoverflow:
Solution #1 and Solution #2 with no results.
When I use:
pip install scipy
It outputs
Requirement already satisfied (use --upgrade to upgrade): scipy in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python
Then I do
pip install scipy --updrage
And it outputs
OSError: [Errno 1] Operation not permitted:
'/var/folders/y3/r_j97_g91494mm7r9th0zycm0000gn/T/pip-paR57c-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy-1.8.0rc1-py2.7.egg-info'
I even try to install using port
:
sudo port install py27-numpy py27-scipy py27-matplotlib py27-ipython +notebook py27-pandas py27-sympy py27-nose
Same result, it says it's been installed but when I try to run my Python project, prints the same error.
Hope you guys can help me.