欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Jupyter的安装和基本使用

程序员文章站 2023-03-15 17:09:50
1. 安装Jupyter pip install jupyter 2. Jupyter的初次使用 # 进入虚拟环境 workon ai # 输入命令 jupyter notebook 本地notebook的默认URL为: http://localhost:8888 想让notebook打开指定目录, ......

1. 安装jupyter

pip install jupyter
Jupyter的安装和基本使用

2. jupyter的初次使用

# 进入虚拟环境
workon ai
# 输入命令
jupyter notebook

本地notebook的默认url为: 

想让notebook打开指定目录,只要进入此目录后执行命令即可

3. jupyter的常用命令及操作简介:

  • 两种模式通用快捷键
    • shift+enter ,执行本单元代码,并跳转到下一单元
    • ctrl+enter ,执行本单元代码,留在本单元
  • 命令模式:按esc进入

    • y ,cell切换到code模式

    • m ,cell切换到markdown模式

    • a ,在当前cell的上面添加cell

    • b ,在当前cell的下面添加cell

  • 其他(了解)

    • 双击d :删除当前cell

    • z ,回退

    • l ,为当前cell加上行号 <!--

    • ctrl+shift+p ,对话框输入命令直接运行

    • 快速跳转到首个cell, crtl+home

    • 快速跳转到最后一个cell, crtl+end -->

  • 编辑模式:按enter进入

    • 补全代码:变量、方法后跟 tab键

    • 为一行或多行代码添加/取消注释: ctrl+/ (mac:cmd+/)

  • 其他(了解):

    ctrl键点击鼠标
    ctrl+z
    ctrl+y
    

4. markdown展示

Jupyter的安装和基本使用

5. 安装jupyter的扩展功能

  • 安装jupyter的扩展包

pip install jupyter_contrib_nbextensions
  • 使用扩展包

jupyter contrib nbextension install --user --skip-running-check
  • 重新运行jupyter,然后选择需要使用的扩展功能即可

Jupyter的安装和基本使用

推荐使用以下扩展:

pep8规范

Jupyter的安装和基本使用

行号

Jupyter的安装和基本使用

拼写检查

Jupyter的安装和基本使用

目录

Jupyter的安装和基本使用

字体

Jupyter的安装和基本使用

代码补全

Jupyter的安装和基本使用

6. 当你勾选了pep8以后会出现pep8不能使用的情况,解决方式如下:

重新安装pep8规范模块

pip install autopep8