有没有一种方法可以在不安装Qt的情况下安装jupyter?

时间:2018-09-21 23:43:26

标签: python jupyter-notebook

是否可以在不安装Qt的情况下安装jupyter?

我不使用qtconsole,想删除pyQt。

1 个答案:

答案 0 :(得分:3)

请勿安装qtconsole

使用 conda ,执行conda install notebookconda install jupyterlab。不要运行conda install jupyter,因为这会安装qtconsole(请查看conda-forge recipe)。

使用 pip ,执行pip install notebookpip install jupyterlab。不要运行pip install jupyter,因为这会安装qtconsole(请查看jupyter setup.py)。