Python jupyter

作者: Alexander_Zz | 来源:发表于2019-07-01 15:54 被阅读0次

    一、pip

    1.1 pip 简介

    pip 是一个现代的,通用的 Python 包管理工具。提供了对 Python 包的查找、下载、安装、卸载的功能

    1.2 官方提供的pip 示例
    # 安装包
    ~]$ pip install [options]
    ~]$ pip install requests
    
    # 查询包
    ~]$ pip search [options]
    ~]$ pip search xml
    
    # 显示已安装包的信息
    ~]$ pip show [optoins]
    ~]$ pip show beautifulsoup4
    
    # 卸载包
    ~]$ pip uninstall [optioins]
    ~]$ pip uninstall requests
    
    # 列表显示已安装包
    ~]$ pip list
    
    # 导出现有环境安装的包
    ~]$ pip freeze > /PATH/SOMEFILE
    ~]$ pip freeze > /tmp/package.txt
    
    # 按照已有列表文件安装包
    ~]$ pip install -r /PATH/SOMEFILE
    ~]$ pip install -t /tmp/package.txt
    
    1.3 pip 修改国内镜像源
    ~]$ mkdir .pip
    ~]$ cd .pip
    .pip]$ vim pip.conf
    
    [global]
    index-url=https://mirrors.aliyun.com/pypi/simple/
    trusted-host=mirrors.aliyun.com
    

    二、jupyter

    2.1 jupyter 简介

    Jupyter Notebook(此前被称为 IPython notebook)是一个交互式笔记本,支持运行 40 多种编程语言。
    Jupyter Notebook 的本质是一个 Web 应用程序,便于创建和共享文学化程序文档,支持实时代码,数学方程,可视化和 markdown。 用途包括:数据清理和转换,数值模拟,统计建模,机器学习等等

    2.2 jupyter 安装
    # 安装 ipython
    test]$ pip install ipython
    
    # 安装 jupyter
    test]$ pip install jupyter
    
    2.3 启动
    # 获取帮助
    test]$ jupyter notebook help
    
    # 生成配置文件
    test]$ jupyter notebook --generate-config
    
    # 设置密码
    test]$ jupyter notebook password
    Enter password: 
    Verify password:
    
    # 启动 jupyter notebook
    test]$ jupyter notebook --ip=0.0.0.0 --no-browser
    --ip= IPADDR   # 设定监听地址,默认监听 127.0.0.1
    --no-browser   # 不启动界面
    
    2.4 快捷键

    Jupyter Notebook 有两种键盘输入模式。

    • 编辑模式
      允许你往单元中键入代码或文本,这时的单元框线是绿色的
    • 命令模式
      键盘输入运行程序命令,这时的单元框线是灰色

    Shift + Enter : 运行本单元,选中下个单元
    Ctrl + Enter : 运行本单元
    Alt + Enter : 运行本单元,在其下插入新单元
    Y:单元转入代码状态
    M:单元转入 markdown 状态
    A :在上方插入新单元
    B:在下方插入新单元
    X:剪切选中的单元
    Shift + V:在上方粘贴单元

    相关文章

      网友评论

        本文标题:Python jupyter

        本文链接:https://www.haomeiwen.com/subject/rbjgcctx.html