centos7 安装jupyter
时间: 2023-11-09 09:03:37 浏览: 165
Linux下安装配置Jupyter notebook并启动
5星 · 资源好评率100%
可以按照以下步骤在 CentOS 7 上安装 Jupyter:
1. 安装 Python 和 pip:
```
sudo yum install python3 python3-pip
```
2. 安装 Jupyter:
```
sudo pip3 install jupyter
```
3. 生成配置文件:
```
jupyter notebook --generate-config
```
4. 生成密码:
```
jupyter notebook password
```
5. 启动 Jupyter:
```
jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser
```
这里的 `--ip` 参数指定了 Jupyter 监听的 IP 地址,`--port` 参数指定了 Jupyter 监听的端口号,`--no-browser` 参数表示不自动打开浏览器。
6. 在浏览器中访问 Jupyter:
```
http://<服务器IP地址>:8888/
```
阅读全文