Search
 
SCRIPT & CODE EXAMPLE
 

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
Comment

PREVIOUS NEXT
Code Example
Shell :: cmd echo datetime in loop 
Shell :: bash stop nohup job 
Shell :: how to debug istio 
Shell :: rename files with sequential numbers linux 
Shell :: sudo add-apt-repository ppa:diodon-team/stable 
Shell :: Online Git repository commands 
Shell :: upstream revert merge 
Shell :: what is the bat code to the print hello world 
Shell :: start commit with pound sign 
Shell :: resume screen linux 
Shell :: oracle cloud destination unrechable wireshark 
Shell :: linux paginate output 
Shell :: run camunda in linux mint 
Shell :: install burp suite kali 
Shell :: npm lavastore 
Shell :: open ssl change pkcs1 to pkcs8 
Shell :: htpasswd arch 
Shell :: cp directory with exclusion 
Shell :: initramfs ubuntu 20.04 
Shell :: apache enable directory listing macbook pro 
Shell :: cut command in unix set diameter 
Shell :: how to run .sh file 
Shell :: how we can push code without pulling code on git branch 
Shell :: bash temporary files 
Shell :: how to select an object based a field which is like a string jq 
Shell :: unity windows build support failed to install arch linux 
Shell :: remove detached disk from raid array linux 
Shell :: uninstall debian kodi 
Shell :: pipeline structural bioinformatics 
Shell :: tapping homebrew/core 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =