qtconsole和jupyter-notebook的对应启动命令行配置

jupyter-notebook:

set conda_path=D:useprogramMiniconda3
pushd %conda_path%
call Scriptsactivate.bat
popd
jupyter notebook

这里注意,popd之后的目录是cmd脚本启动的位置,所以为了方便,这里用快捷方式重定向为:D:useworkspacejupyter-notebook

对应的,qtconsole可以设置成:

set conda_path=D:useprogramMiniconda3
pushd %conda_path%
call Scriptsactivate.bat
popd
jupyter qtconsole
原文地址:https://www.cnblogs.com/pyzh/p/qtconsole-and-jupyter-notebook-start-script.html