J'utilise Ubuntu 14.04 avec Python 2.7.6. J'ai installé matplotlib
pour Python 2. Maintenant, je viens d'installer Python 3.4.2 à l'aide de pyenv install 3.4.2
. J'ai ensuite lancé pip install matplotlib
pour installer matplotlib
pour Python 3. 3. J'ai ensuite découvert le paquetage python3-matplotlib
pour Ubuntu 14.04. Je me demande: aurais-je dû utiliser Sudo apt-get install python3-matplotlib
à la place? Quelle est la méthode préférée pour installer matplotlib
pour Python 3 côte à côte avec Python 2 matplotlib
name__?
Je n'ai pas de système Ubuntu en ce moment avec moi. mais je peux quand même vous aider, je pense.
ouvrez votre terminal et tapez comme
apt-cache search python3-matplotlib
Si vous le trouvez comme disponible, vous pouvez l’installer à partir de
Sudo apt-get install python3-matplotlib
c'est le moyen le plus préféré.
Maintenant, comment utiliser matplotlib avec python 3. J'ai également posté une question ici sur la façon d'utiliser python2 et python3 côte à côte.
Simple, utilisez python3 <filename.py>
tout en exécutant votre programme avec python3-matplotlib
de même, si vous utilisez python2, il chargera python 2.
j'espère que cela pourra aider.