安装python3交互式shell---ipython3

IPython

IPython 中 的 “I” 代表 交互 interactive

特点

IPython 是一个 python 的 交互式 shell,比默认的 python shell 好用得多

  •         支持自动补全
  •         自动缩进
  •         支持 bash shell 命令
  •         内置了许多很有用的功能和函数

IPython 是基于 BSD 开源的

版本

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

安装

已经安装好python3后使用如下命令安装ipython

pip3 install ipython

使用

原文地址:https://www.cnblogs.com/1016391912pm/p/13256139.html