Python Modules Installation

Installing modules like pip, numpy, matplotlib, scipy, etc. in command prompt for windows operating system and in the terminal for ubuntu operating system

For windows OS run following two commands one after the other in command prompt (cmd):

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

python get-pip.py

For ubuntu OS:

sudo apt-get update

sudo apt install python3-pip    

pip3 install numpy 

or

pip install numpy

pip3 install scipy

or

pip install scipy

pip3 install matplotlib

or

pip install matplotlib

pip3 install pandas

or

pip install pandas

pip3 install scikit-learn

or

pip install scikit-learn