I have somehow a mess with my python versions and or pip version. As a consequence I have trouble to install numpy. I use the following default python version
>>> print(sys.version)
3.5.3 (default, Jan 19 2017, 14:11:04)
[GCC 6.3.0 20170118]
>>>
I have several python / pip version installed:
ola@think:~$ /usr/bin/python
python python2.6 python2.7-config python3 python3.5-config python3.5m-config python3m python-config pythontex3
python2 python2.7 python2-config python3.5 python3.5m python3-config python3m-config pythontex
ola@station:~$
If I want to import numpy I get the following:
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'numpy'
However, running a pip3.5 install shows:
ola@station:~$ sudo pip3.5 install numpy
Requirement already satisfied: numpy in /usr/local/lib/python2.7/dist-packages
ola@station:~$
Something seems fishy, but I don't know what and how to resolve it. Help would be appreciated