如何查看jupyter notebook版本
时间: 2023-11-06 12:09:19 浏览: 488
要查看Jupyter Notebook的版本,可以使用以下命令在终端中运行:
jupyter notebook --version
这将输出当前安装的Jupyter Notebook的版本号。另外,也可以在Jupyter Notebook中通过点击Help菜单,然后选择About Jupyter Notebook来查看版本信息。
相关问题
查看jupyter notebook版本
你可以在jupyter notebook中运行以下命令来查看版本:
```bash
jupyter notebook --version
```
或者在jupyter notebook中运行以下代码来查看版本:
```python
import notebook
notebook.__version__
```
阅读全文