1.试图 Jupyter Lab 进行 Debug
conda install -c conda-forge jupyterlab
# conda install xeus-python -c conda-forge # 会有问题
pip install -i https://mirrors.aliyun.com/pypi/simple xeus-python
pip install nodejs npm # 安装 Node.js
jupyter labextension install @jupyterlab/debugger # 安装JupyterLab 前端插件
jupyter lab # cmd 运行
想在jupyter中使用 Debug功能,网络说jupyter lab可以。安装之后,问题多多,最后连jupyter notebook也不能用。没事不要安装 upyter lab。比如出现 jupyter 500 : Internal Server Error 这样的错误。
pip uninstall or conda uninstall 无法彻底删除jupyter lab。解决方案如下:
进入 C:\Users\admin\anaconda3\envs\mypy38\Lib\site-packages 中删除所有的jupyter开头的文件夹;删除文件夹 C:\Users\admin\.jupyter。
重新安装 conda install jupyter 回归到原始的jupyter notebook。
2. 使用VSCode
直接使用Vscode可以调试,但是Vscode不支持matplotlib.notebook, 当前(2024-1-12)只支持 matplotlib.inline、 matplotlib.widget文章来源:https://www.toymoban.com/news/detail-795172.html
3. 最终方案 Pycharm的专业版。
Pycharm的专业版可以直接调试Jupyter。文章来源地址https://www.toymoban.com/news/detail-795172.html
到了这里,关于jupyter Debug 方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!