📜  IPython-安装

📅  最后修改于: 2020-11-08 07:02:34             🧑  作者: Mango


默认情况下, Python的Anaconda包含IPython。可以从Anaconda的下载页面www.anaconda.com/download/下载。该链接提供了所有主要OS(Windows,MacOS和Linux)和体系结构(32位和64位)的二进制文件。

要在标准Python安装中单独安装IPython,可以使用pip命令,如下所示-

pip3 install ipython

IPython内部使用以下软件包-

Sr.No. IPython dependencies & Functionality
1

colorama

Cross-platform API for printing colored terminal text from Python

2

jedi

An autocompletion tool for Python

3

pickleshare

Small ‘shelve’ like datastore with concurrency support

4

prompt_toolkit

Library for building powerful interactive command lines in Python

5

pygments

Syntax highlighting package written in Python

6

simplegeneric

Simple generic functions

7

traitlets

Configuration system for Python applications.

通常,所有依赖项都会自动安装。否则,您可以使用pip单独安装它们。