增强版交互式解释器IPython安装

2018-06-27  本文已影响16人  jdzhangxin

IPython的设计目的是在交互式计算和软件开发这两个方面最大化地提高生产力。

ubuntu使用sudo apt install ipythonsudo apt install ipython3

该操作将会在site-packages目录中安装ipyhon的库文件,并在scripts目录中创建一个ipython脚本。在unix系统中,该目录与python的二进制文件目录相同。如果系统中已经安装了python包,则ipython将会安装在/usr/bin目录下。

Python 2.7.12 (default, Nov 20 2017, 18:23:56)
Type "copyright", "credits" or "license" for more information.

IPython 2.4.1 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]:

CPython用>>>作为提示符,而IPython用In [序号]:作为提示符。

上一篇 下一篇

猜你喜欢

热点阅读