阅读量:0
在Ubuntu中安装Jupyter的步骤如下:
- 打开终端,并更新系统:
sudo apt update
- 安装Python 3和pip:
sudo apt install python3 python3-pip
- 使用pip安装Jupyter:
sudo pip3 install jupyter
- 启动Jupyter Notebook:
jupyter notebook
- 打开浏览器,访问 http://localhost:8888/ ,即可进入Jupyter Notebook的界面。
通过以上步骤,您就可以在Ubuntu系统上成功安装并使用Jupyter Notebook了。