解决pip安装jupyter,运行过程中终端一直存在问题
问题描述
在终端窗口中运行jupyter notebook,不能关闭终端窗口,否则进程将关闭,jupyter无法访问。
python
jupyter notebook
解决方法
使用一句代码轻松解决烦恼;
创建Start_jupyter.vbs脚本,将代码内容填入脚本中,双击运行后终端窗口将隐藏在后台运行(非最小化)。
python
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "cmd /c jupyter notebook", 0, False
运行效果无终端窗口,jupyter程序运行正常。
注意:由于白屏无法显示运行了多少个终端窗口jupyter进程,需根据自己的电脑内存运行情况适量开放。
有帮助用请点赞、收藏、关注,一键三连哦!