Installer numpy et matplotlib

Fermé
Omga - 7 juil. 2019 à 17:43
Breizhux Messages postés 368 Date d'inscription vendredi 1 septembre 2017 Statut Membre Dernière intervention 17 novembre 2020 - 8 juil. 2019 à 12:00
Bonjour, j'ai installé python 3.7.3 sur windows 10 et j'aimerais installer numpy et matplotlib
comment procéder .??????,



Configuration: Windows / Chrome 75.0.3770.100
A voir également:

1 réponse

Breizhux Messages postés 368 Date d'inscription vendredi 1 septembre 2017 Statut Membre Dernière intervention 17 novembre 2020 139
7 juil. 2019 à 20:57
Il faut ouvrir un invite de commande puis écrire :
pip install numpy

Puis pour matplotlib :
pip install matplotlib


Je pense que ça devrais marcher... Je n'ai pas essayé !
1
chaque fois que je tape pip install numpy ou pip install matplotlib ça donne syntaxerror
0
Breizhux Messages postés 368 Date d'inscription vendredi 1 septembre 2017 Statut Membre Dernière intervention 17 novembre 2020 139
8 juil. 2019 à 12:00
Après quelques recherches je tombe sur ce site : https://solarianprogrammer.com/2017/02/25/install-numpy-scipy-matplotlib-python-3-windows/

apparemment ce n'est pas
pip install
qu'il faut utiliser mais
python -m pip install

Les commandes sont donc :
python -m pip install numpy
python -m pip install matplotlib


J'espère que ça va marcher !
Bonne journée.
0