📌  相关文章
📜  安装 jupyter notebook ubuntu 20.04 - Shell-Bash 代码示例

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

代码示例1
# Jupyter notebook for ubuntu
# you should have python
python3 --version # this might me only "python" if yo use python2

# you should have pip
pip3 --version # just "pip" if you use older version

# install jupyter notebook
sudo -H pip3 install jupyter # use "pip" according to your need

# run jupyter notebook
jupyter notebook