Beginners Guide: Setting A Python Environment on M
  • Introduction
  • Update it, right away!
  • Download, download
  • Python
  • Option 1: Brew it!
    • Using Home-brew
    • Python with Homebrew
  • Option 2: Pyenv it!
    • Install and use multiple Python versions
  • Option 3: Conda it!
  • Run Python
    • Get pip!
    • NumPy-SciPy-Matplotlib
    • Get an IDE
Powered by GitBook
On this page
  1. Run Python

NumPy-SciPy-Matplotlib

PreviousGet pip!NextGet an IDE

Last updated 7 years ago

The , and scientific libraries for Python. They are sometimes a little tricky to install from source because they have dependencies they need to build correctly. However, pip makes it super easy for us to install all of these. Just grab and run the code below to install numpy, scipy and matplotlib in your terminal window:

pip3 install numpy
pip3 install matplotlib
pip3 install scipy

You can use the same code for installing the other part of the stack or different libraries such as pandas.

That's it! Now you are all set to rock the Python world.

Numpy
Scipy
Matplotlib