NumPy-SciPy-Matplotlib

The Numpy, Scipy and Matplotlib 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.

Last updated