启动Jupyter Lab后发现其中没有终端Terminals
启动jupyter lab过程中有错误提示 终端不可用(错误: DLL load failed: 找不到指定的程序。)
终端不可用(错误: DLL load failed: 找不到指定的程序。)
因此,我在JupyterLab没有终端。
解决方案
1、直接一个pip install。例如:
pip install pywinpty==0.5.7 -i https://pypi.tuna.tsinghua.edu.cn/simple/
2、下载wheel文件,然后安装
//下载
pip download pywinpty==0.5.7 -i https://pypi.tuna.tsinghua.edu.cn/simple/
//安装,此处需要注意下载下来的文件名字
//根据系统及硬件情况可能有所不同
pip install pywinpty-0.5.7-cp37-cp37m-win_amd64.whl
然后重启jupyter lab,打开后再看就有Terminals(终端)了
知识来源:百度搜到的python黑洞网 https://www.pythonheidong.com/blog/article/443513/e1c018f7cd0dddfc5d77/
|