📜  如何在没有 anaconda 的情况下在 ubuntu 中设置机器学习环境 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:34.882000             🧑  作者: Mango

代码示例1
# 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