当前位置:   article > 正文

jupyter notebook安装_jupyter 安装包

jupyter 安装包

目标

使用conda安装jupyter,能够在浏览器和pycharm中基于jupyter编辑和维护python代码。

安装jupyter

创建conda环境,安装python包和jupyter包。

  1. #创建环境,python版本使用3.8及以上
  2. conda create -n demo python=3.8
  3. #安装juptyter
  4. conda install jupyter
  5. #juptyer浏览器端的兼容性问题
  6. conda install nbconvert==5.4.1
  7. #扩展工具
  8. conda install -c conda-forge jupyter_contrib_nbextensions
  9. conda install -c conda-forge jupyter_nbextensions_configurator

配置账号

配置jupyter的默认登录账号,避免每次复制token。

获取密文,打开Python终端,生成密码。

mark

  1. #生成jupyter的默认配置,设置密码
  2. jupyter notebook --generate-config --allow-root
  3. #配置jupyter,macOS默认的配置文件路径为:~/.jupyter/jupyter_notebook_config.py
  4. # Configuration file for jupyter-notebook.
  5. c.ServerApp.ip = 'localhost'
  6. c.ServerApp.allow_root = True
  7. c.ServerApp.open_browser = False
  8. c.ServerApp.port = 8888
  9. c.ServerApp.password = u'sha1:[上一步生成的密码]'
  10. c.ContentsManager.root_dir = '/Users/[用户名]/python/jupyter'

配置pycharm

两种配置方式均可以,区别是启动方式。使用“User Managed Server”方式,pycharm自动启动jupyter notebook;使用“configured server”需要提前手动启动。

配置完成之后,在pycharm中新建ipynb文件,如下。

 在浏览器端直接访问jupyter notebook : http://localhost:8888

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/192798
推荐阅读
相关标签
  

闽ICP备14008679号