February 2019
Beginner to intermediate
382 pages
10h 1m
English
NumPy is the fundamental package for machine learning with Python. It offers powerful tools including the following:
Installation instructions for NumPy are at http://docs.scipy.org/doc/numpy/user/install.html. Alternatively, an easier method is installing it with pip in the command line as follows:
pip install numpy
To install conda for Anaconda users, run the following command line:
conda install numpy
A quick way to verify your installation is to import it in the shell as follows:
>>> import numpy
It's installed nicely if there's no error message.