📅  最后修改于: 2022-03-11 14:50:34.882000             🧑  作者: Mango
# Step 1 : Open terminal in ubuntu and type following commands
# This command will help to install latest version of python along with pip
sudo apt install python3-pip
# install jupyter notebook
sudo apt install jupyter-notebook
#install machine learning packages like sklearn , pandas, numpy, matplotlib
pip install sklearn
pip install pandas
pip install matplotlib
# Note : In the above commands, we can use pip3 instead of pip.
# Launching jupyter notebook
'''
Type jupyter-notebook in terminal and hit enter
'''
jupyter-notebook