jupyter 版本
时间: 2023-12-14 16:34:41 浏览: 96
以下是获取Jupyter版本的方法:
```shell
jupyter --version
```
输出结果类似于:
```
jupyter core : 4.7.1
jupyter-notebook : 6.4.0
qtconsole : 5.1.1
ipython : 7.24.1
ipykernel : 5.5.5
jupyter client : 6.1.12
jupyter lab : 3..16
nbconvert : 6.1.0
ipywidgets : 7.6.3
nbformat : 5.1.3
traitlets : 5.0.5
```
其中第一行`jupyter core`后面的数字是Jupyter的核心版本,最后一行`jupyter lab`后面的数字是Jupyter Lab的版本。
相关问题
降低jupyter版本
如果你需要降低Jupyter的版本,你需要先卸载当前版本,然后重新安装需要的版本。你可以按照以下步骤进行操作:
1. 在cmd或者prompt(py36)中输入命令 pip list,查看已安装的Jupyter版本。
2. 卸载当前版本:pip uninstall jupyter
3. 安装需要的版本:pip install jupyter==<version>,其中<version>是你需要安装的版本号。
请注意,降低Jupyter版本可能会导致一些功能不可用或出现其他问题,因此请谨慎操作。如果你不确定需要安装哪个版本,可以尝试安装较低版本的Jupyter,直到你找到一个适合你的版本为止。
查看jupyter 版本
你可以在jupyter notebook中执行以下命令来查看jupyter的版本:
```python
!jupyter --version
```
或者在终端中执行以下命令:
```bash
jupyter --version
```
阅读全文