Python3.4.0 vient par défaut sur Ubuntu 14.04.01 LTS. Nous pouvons l'utiliser en tapant sur le Terminal `python3.
Je veux utiliser Numpy pour Python3.4.0. Je lance import numpy but I had an
ImportError .
Alors Je l'ai installé en exécutant sudo apt-get install Python-numpy . Then I typed on Terminal:
python3`. Puis j'ai importé numpy. J'ai obtenu cette erreur :
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'numpy'
>>>
Néanmoins, Numpy fonctionne maintenant pour Python-2.7 :
begueradj@begueradj-Bill:~$ python
Python 2.7.6 (default, Mar 22 2014, 22:59:38)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>>
Comment puis-je faire fonctionner Numpy pour Python 3.4.0 ?