ubantu 安装jupyter notebook
时间: 2023-10-23 14:09:33 浏览: 136
Ubuntu安装Jupyter Notebook教程
好的,以下是在 Ubuntu 上安装 Jupyter Notebook 的步骤:
1. 首先,确保你的系统已经安装了 Python 和 pip。如果没有安装,可以使用以下命令进行安装:
```
sudo apt-get update
sudo apt-get install python3 python3-pip
```
2. 安装 Jupyter Notebook:
```
pip3 install jupyter
```
3. 生成配置文件:
```
jupyter notebook --generate-config
```
4. 生成密码:
```
jupyter notebook password
```
5. 启动 Jupyter Notebook:
```
jupyter notebook
```
6. 在浏览器中打开 `http://localhost:8888`,输入之前生成的密码即可登录。
阅读全文