I need to work with python3.4 and numpy. My distribution is Mint 18 and python3.5 is the default python version.
So I installed python3.4. But I can't import the module numpy. I tried with pip, but I read that pip-3.4 is no longer working and pip3 is not helpful, because it is related to python3.
I tried to use sudo apt-get install python3.4-numpy and the terminal response:
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.
Statusinformationen werden eingelesen.... Fertig
E: Paket python3.4-numpy kann nicht gefunden werden.
E: Mittels des Musters »python3.4-numpy« konnte kein Paket gefunden werden.
E: Mittels regulärem Ausdruck »python3.4-numpy« konnte kein Paket gefunden werden.
(means: E: package python3.4-numpy can not be found or something like this)
Then I used the the alias-command alias python=python3.4 and tried it with sudo apt-get install python-numpy, but there isn't a numpy module in the modules list in python3.4, instead it is in python2.7. And if I use sudo apt-get install python3-numpy the module is in python3.5.
I don't want to use a virtualenv. Do you have any ideas how I get the modules into python3.4?
(Sorry for the edit - i uploaded the question to fast.)