Linux安装jupyter debugger+Conda设置proxy代理
生活随笔
收集整理的这篇文章主要介绍了
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-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
总结
以上是生活随笔为你收集整理的Linux安装jupyter debugger+Conda设置proxy代理的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: Linux创建jupyter noteb
- 下一篇: Linux python impala/