
Jupyter
jupyter
肯德基套餐
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
将conda环境导入Jupyter
#conda下先进入需要导入的环境cenv conda activate cenv #安装ipykernel (cenv)$ conda install ipykernel #创建jupyter kernel (cenv)$ ipython kernel install --user --name=<jupyter kernel name> 刷新jupyter页面即可看到导入的环境 ...原创 2020-06-22 11:11:55 · 1190 阅读 · 0 评论 -
Jupyter设置proxy
需要读取外网服务器时,需要走代理,本机代理走的是1080端口,可以将jupyter的代理设置到该端口上。 方法1:临时修改 在终端进行设置,再在该终端上启动jupyter,起来的notebook即可走代理。 set HTTP_PROXY=http://127.0.0.1:1080 set HTTPS_PROXY=http://127.0.0.1:1080 更通用的方法 set HTTP_PROXY=http://<user>:<password>@<proxy server&原创 2020-06-23 19:21:59 · 5301 阅读 · 1 评论