Jupyter Notebook 安装使用

易小灯塔
2018-03-16 / 0 评论 / 753 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2022年06月21日,已超过888天没有更新,若内容或图片失效,请留言反馈。

简介: 网页交互式编辑器, 多用于数据分析

安装

pip install jupyter notebook
pip3 install jupyter

配置设置

jupyter notebook --generate-config

启动

jupyter notebook
# 指定6666端口启动
jupyter notebook --port 6666

找到内核配置路径

λ  jupyter kernelspec list
Available kernels:
  python2    C:\Users\admin\AppData\Roaming\jupyter\kernels\python2
  python3    C:\Users\admin\AppData\Roaming\jupyter\kernels\python3

修改Python路径为当前Python的安装路径

{
 "argv": [
  "D:\\DevelopTools\\Python37\\python.exe",
  "-m",
  "ipykernel_launcher",
  "-f",
  "{connection_file}"
 ],
 "display_name": "Python 3",
 "language": "python"
}
  1. 打开指定的notebook文件: jupyter notebook notebook.ipynb
  2. 指定运行的端口:jupyter notebook --port 9999
  3. 启动服务器但不打开浏览器:jupyter notebook --no-browser
  4. 查看服务器帮助内容:jupyter notebook --help

可配合vscode使用

0

评论 (0)

取消