J'ai installé le paquet Python scipy en utilisant la commande suivante provenant de ici
sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose
Cependant, je ne peux importer sympy
que dans Python 2.7.6
qui est la version Python par défaut lorsque je saisis python
dans le terminal. Lorsque je démarre Python 3.4.0
en saisissant python3
, l'instruction import sympy
renvoie l'erreur suivante
>>> import sympy
Traceback (most recent call last):
File "", line 1, in
ImportError: No module named 'sympy'
Comment puis-je résoudre ce problème ?