美文网首页
增强版交互式解释器IPython安装

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

作者: jdzhangxin | 来源:发表于2018-06-27 12:46 被阅读16次

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

  • 自动安装
    Python2安装pip install ipython
    Python3安装pip3 install ipython

ubuntu使用sudo apt install ipythonsudo apt install ipython3

  • 源码安装
    1. 下载
    2. 解压tar zvxf ipython-版本号.tar.gz
    3. 进入路径cd ipython-版本号
    4. 安装python setup.py install

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

  • 使用
    直接在命令行输入ipython,直接进入IPython交互解释器
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 [序号]:作为提示符。

相关文章

网友评论

      本文标题:增强版交互式解释器IPython安装

      本文链接:https://www.haomeiwen.com/subject/ixybyftx.html