ubuntu安装jupyter notebook
时间: 2023-04-30 20:02:33 浏览: 144
Pycharm安装并配置jupyter notebook的实现
5星 · 资源好评率100%
在 Ubuntu 上安装 Jupyter Notebook 的步骤如下:
1. 首先确保系统已经安装了 Python,如果没有,可以使用命令 "sudo apt install python3" 安装。
2. 安装 pip,pip 是 Python 包管理工具,可以用来安装 Jupyter Notebook。使用命令 "sudo apt install python3-pip" 安装。
3. 使用 pip 安装 Jupyter Notebook,命令为 "pip3 install jupyter"。
4. 安装成功后,运行 "jupyter notebook" 即可启动 Jupyter Notebook。
5. 在浏览器中输入 "http://localhost:8888" 即可访问 Jupyter Notebook。
阅读全文