Tutoriel d'installation du package SciPy

Windows - MacOS - Ubuntu - Fedora

Note : SciPy est un package qui s'utilise avec le langage Python. Si vous n'avez pas python 3 installé, veuillez vous référer à la page https://wiki.student.info.ucl.ac.be/Logiciels/Python3

Windows

Installation sous Windows

Note : On suppose que vous n'avez pas Python 2 installé, si jamais c'est le cas, alors remplacez python par python3 et pip par pip3.

Note : Vérifiez que vous avez pip déjà installé : pip --version

  1. Ouvrez un invite de commande et tapez python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
  2. Python a maintenant accès au package SciPy

Mac OS (Intel et Apple Silicon)

Installation sous Mac OS

  1. Dans votre terminal lancez la commande python3 -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
  2. Python3 a maintenant accès au package SciPy

Ubuntu

Installation sous Ubuntu

  1. Dans votre terminal, lancez la commande python3 -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
  2. Python3 a maintenant accès au package SciPy.

Fedora

Installation sous Fedora

Note : On suppose que vous n'avez pas Python 2 installé, si jamais c'est le cas, alors remplacez python par python3 et pip par pip3. (python 3 est préinstallé sur fedora)

Note : Vérifiez que vous avez pip déjà installé : pip --version

  1. Dans votre terminal, lancez la commande python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
  2. Python a maintenant accès au package SciPy.