ubuntu安装jupyter,启动和退出jupyter
时间: 2024-07-27 17:01:28 浏览: 149
Ubuntu上安装Jupyter Notebook的步骤如下:
1. **更新系统**:
```
sudo apt-get update
sudo apt-get upgrade
```
2. **安装Python和Jupyter**:
如果你还没有安装Python 3,可以使用下面的命令:
```
sudo apt-get install python3
```
然后安装Jupyter Notebook:
```
sudo apt-get install python3-jupyter-notebook
```
或者如果你更喜欢使用Python 3的版本号指定安装:
```
sudo apt-get install python3-pip
pip3 install jupyter notebook
```
3. **启动Jupyter**:
启动Jupyter Notebook可以使用以下命令:
```
jupyter notebook
```
或者打开浏览器访问`http://localhost:8888`(默认端口,可能会因配置不同而改变)。
4. **登录和使用**:
打开浏览器后会看到一个提示创建新笔记本或登录已有的。如果首次运行需要设置密码,按照指示操作即可。
5. **退出Jupyter**:
在Jupyter Notebook页面右上角,选择“Kernel”-> “Interrupt” 来停止当前运行的任务,然后点击左上角的“Close and Halt”来关闭所有 notebook。也可以通过命令行:
```
jupyter notebook stop
```
阅读全文