Horje
how to setup machine learning enviroment in ubuntu without anaconda Code Example
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




Shell

Related
react-native app examples github Code Example react-native app examples github Code Example
get to directory downloads in ubuntu 20.04 using terminal Code Example get to directory downloads in ubuntu 20.04 using terminal Code Example
how to get environment in string linux shell Code Example how to get environment in string linux shell Code Example
ubiquiti cli set compliance Code Example ubiquiti cli set compliance Code Example
reset git file Code Example reset git file Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13