I use pip to install the packages I need: Numpy and Scipy. However, they only work if I import them using python 2.7 . When I try to do with 3.5, it seems like it is not installed at all.
I updated pip and got its version pip 8.0.2 from /Library/Python/2.7/site-packages (python 2.7), then I tried: pip3.5 --versionand got:
pip 8.0.2 from /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-
packages (python 3.5)
All I want is that all packages are downloaded, I can use them with Python 3.5. I do not use 2.7, but I do not want to delete it, because I read this is not a good idea.
Can someone explain to me how I can install packages for their work on 3.5, and not just in version 2.7, please?
Thanks in advance for reading :) and helpful help.
PS: Im using OS X 10.9.5
source
share