cara mengatur lingkungan pembelajaran mesin di ubuntu tanpa anaconda

# 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
Hilarious Hyena