我如何检查/知道哪里安装了jupyter?在虚拟环境/conda/OS上?
Linux/Ubuntu 16
在终点站我得到:
jupyter --version:
- jupyter core : 4.6.1
- jupyter-notebook : 6.0.3
- qtconsole : not installed
- ipython : 7.11.1
- ipykernel : 5.1.3
- jupyter client : 5.3.4
- jupyter lab : not installed
- nbconvert : 5.6.1
- ipywidgets : 7.5.1
- nbformat : 5.0.4
- traitlets : 4.3.3发布于 2021-01-21 12:42:12
建议:
which jupyter -a如果您正在运行pyenv或其他使用shims的环境管理器,则不会提供任何有用的信息。相反,您可能需要使用:
jupyter --paths在config和data下面查看--其中一个路径是安装位置;如果您想真正了解jupyter从哪里加载配置,这也可能更有用。
https://stackoverflow.com/questions/65826211
复制相似问题