首页 > 其他分享 >本地搭建JupyterNotebook开发环境

本地搭建JupyterNotebook开发环境

时间:2022-12-15 22:12:03浏览次数:72  
标签:127.0 http https 0.1 JupyterNotebook 10809 本地 搭建 proxy

背景

Jupyter 是一款优秀的编程语言运行环境包括Hub、Lab、Notebook等优秀自项目,JupyterNotebook是衍生的在线交互运行平台的前端项目

环境

  • Windows 11
  • Node 18 (要求>16)
  • npm 6 (要求<7)

步骤

  1. clone项目,切换到稳定分支,如5.7.x,在线地址:https://github.com/jupyter/notebook
  2. 安装依赖,先通过python安装Jupyter的其他组件,notebook项目依赖其他组件
pip install jupyter
pip install jupyterlab
  1. 项目安装
yarn install
  1. 项目打包【可选】
  • 由于网络问题可能导致bower命令执行失败,加载github相关网站资源加载不到,在项目的.bowerrc文件中增加bower proxy,亲测有用,git和npm暂不用设置
yarn run build
#bower
  "proxy": "http://127.0.0.1:10809",
  "https-proxy": "http://127.0.0.1:10809",
  "strict-ssl": false
#git
[http]
proxy = http://127.0.0.1:10809
[https]
proxy = http:127.0.0.1:10809
[url "https://"]
insteadOf = git://
#npm
npm config set proxy http://127.0.0.1:10809
npm config set https-proxy http://127.0.0.1:10809
  1. 启动项目
python3 -m notebook --port 8989

启动起来就能访问了

后记

  • 切换版本以后再CONTRIBUTING.rst文件里有完整的开发环境搭建方法,确实非常非常的难找

标签:127.0,http,https,0.1,JupyterNotebook,10809,本地,搭建,proxy
From: https://www.cnblogs.com/terrency/p/16983560.html

相关文章