ipython安装

IPython
IPython 中 的 “I” 代表 交互 interactive
特点

IPython 是一个 python 的 交互式 shell,比默认的 python shell 好用得多
支持自动补全
自动缩进
支持 bash shell 命令
内置了许多很有用的功能和函数
IPython 是基于 BSD 开源的
版本

Python 2.x 使用的解释器是 ipython
Python 3.x 使用的解释器是 ipython3

要退出解释器可以有以下两种方式:

1> 直接输入 exit

python In [1]: exit

2> 使用热键退出

在 IPython 解释器中,按热键 ctrl + d,IPython 会询问是否退出解释器

IPython 的安装

Linux:
bash $ pip3 install python

原文地址:https://www.cnblogs.com/keystone/p/10692057.html