pip list | grep jupyter显示不少内部或外部命令,也不是可运行程序
时间: 2023-07-10 12:28:58 浏览: 187
安装Anaconda后,遇到“‘python’不是内部或外部命令,也不是可运行的程序或批处理文件”问题的详细解决方案
5星 · 资源好评率100%
`pip list` 命令用于列出 Python 环境中安装的所有模块,而 `grep` 命令是 Linux 和 Mac OS X 系统中用于过滤文本的命令,Windows 系统中没有该命令。因此,在 Windows 系统中,你可以使用以下命令来查看是否安装了 Jupyter notebook:
```bash
pip list | findstr jupyter
```
这个命令会列出所有包含 `jupyter` 字符串的模块,如果 Jupyter notebook 被正确安装,会显示类似于以下的结果:
```
jupyter 1.0.0
jupyter-client 5.2.3
jupyter-console 6.1.0
jupyter-core 4.6.3
```
如果没有显示类似于以上结果,说明 Jupyter notebook 没有被正确安装,可以使用以下命令安装:
```bash
pip install jupyter
```
安装完成后,再次使用 `pip list | findstr jupyter` 命令查看是否安装成功。
阅读全文