参考文档:https://jupyterlab.readthedocs.io/en/stable/user/debugger.html

需要执行如下两条命令:

conda create -n jupyterlab-debugger -c conda-forge jupyterlab=3 xeus-python
conda activate jupyterlab-debugger

但是因为网络原因,需要设置代理否则无法安装

尝试修改.condarc文件,未成功;

改为直接在shell中设置环境变量:

$ export http_proxy=http://username:passwd@host:port
$ export https_proxy=https://username:passwd@host:port

#查看是否添加成功
$ echo $http_proxy

#删除添加错误的变量
$ unset http_proxy

#为确保成功,最好
$ source ~/.bashrc

再次运行最开始的两条命令,即可顺利安装jupyter debugger

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐