- Jupyter 教程
- Jupyter - 首页
- IPython
- IPython - 简介
- IPython - 安装
- IPython - 快速入门
- 运行和编辑 Python 脚本
- IPython - 历史命令
- IPython - 系统命令
- IPython - 命令行选项
- 动态对象自省
- IPython - IO 缓存
- 设置 IPython 为默认 Python 环境
- 导入 Python Shell 代码
- IPython - 嵌入 IPython
- IPython - 魔术命令
- Jupyter
- Jupyter 项目 - 概述
- Jupyter Notebook - 简介
- 在线使用 Jupyter
- 安装和入门
- Jupyter Notebook - 仪表盘
- Jupyter Notebook - 用户界面
- Jupyter Notebook - 单元格类型
- Jupyter Notebook - 编辑
- Jupyter Notebook - Markdown 单元格
- 单元格魔法函数
- Jupyter Notebook - 绘图
- 转换 Notebook
- Jupyter Notebook - IPyWidgets
- QtConsole
- QtConsole - 快速入门
- QtConsole - 多行编辑
- QtConsole - 内联图形
- QtConsole - 保存为 Html
- QtConsole - 多个控制台
- 连接到 Jupyter Notebook
- 使用 github 和 nbviewer
- JupyterLab
- JupyterLab - 概述
- 安装和入门
- JupyterLab - 界面
- JupyterLab - 安装 R 内核
- Jupyter 资源
- Jupyter - 快速指南
- Jupyter - 有用资源
- Jupyter - 讨论
IPython - 安装
Anaconda Python 发行版默认包含 IPython。它可以从 Anaconda 的下载页面下载 www.anaconda.com/download/ 此链接提供了适用于所有主要操作系统(Windows、MacOS 和 Linux)和架构(32 位和 64 位)的二进制文件。
要在标准 Python 安装中单独安装 IPython,可以使用以下 pip 命令:
pip3 install ipython
IPython 内部使用以下软件包:
序号 | IPython 依赖项和功能 |
---|---|
1 | colorama 用于从 Python 打印彩色终端文本的跨平台 API |
2 | jedi Python 的自动完成工具 |
3 | pickleshare 具有并发支持的小型“shelve”式数据存储 |
4 | prompt_toolkit 用于在 Python 中构建功能强大的交互式命令行的库 |
5 | pygments 用 Python 编写的语法高亮显示包 |
6 | simplegeneric 简单的泛型函数 |
7 | traitlets Python 应用程序的配置系统。 |
通常,所有依赖项都会自动安装。否则,您可以使用 pip 单独安装它们。
广告