Required Python packages

Installing the packages

In this course, we are going to work with some Python packages. You first need to install Python 3 or higher, including pip. Then you have to follow these commands from the Windows command line (or Linux terminal) for each package:

Scikit-learn

pip install -U scikit-learn

Imblearn

pip install -U imbalanced-learn

Jupyter

pip install notebook

Pandas

pip install pandas

Numpy

pip install numpy

Running Jupyter notebooks

In order to run a Jupyter notebook you have to open your Windows command line (or Linux terminal) and type:

jupyter notebook

A browser window will open with the Jupyter environment.

Complete and Continue  
Discussion

0 comments