Linux安装jupyter debugger+Conda设置proxy代理
参考文档:https://jupyterlab.readthedocs.io/en/stable/user/debugger.html需要执行如下两条命令:conda create -n jupyterlab-debugger -c conda-forge jupyterlab=3 xeus-pythonconda activate jupyterlab-debugger但是因为网络原因,需要设置
·
参考文档: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
更多推荐
已为社区贡献4条内容
所有评论(0)