Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to setup machine learning enviroment in ubuntu without 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
 
PREVIOUS NEXT
Tagged: #setup #machine #learning #enviroment #ubuntu #anaconda
ADD COMMENT
Topic
Name
9+6 =