J'ai installé la pile scipy Python en utilisant la commande suivante tirée d' ici
sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose
Cependant, je peux importer sympy
uniquement dans Python 2.7.6
quelle est la version Python par défaut lorsque je tape python
dans le terminal. Lorsque je commence Python 3.4.0
par taper python3
, l' import sympy
instruction jette l'erreur
>>> import sympy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'sympy'
Comment résoudre ce problème?
pip
pour installer des packages globalement devrait être évité?