首页 > 代码库 > ipython安装

ipython安装

以下以Centos7为例

[root@c7 ~]# tar xf ipython-1.2.1.tar.gz

[root@c7 ~]# cd ipython-1.2.1

[root@c7 ipython-1.2.1]# python setup.py build

[root@c7 ipython-1.2.1]# python setup.py install

[root@c7 ipython-1.2.1]# ipython

Python 2.7.5 (default, Jun 17 2014, 18:11:42) 

Type "copyright", "credits" or "license" for more information.


IPython 1.2.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]: 


本文出自 “赵东伟的博客” 博客,请务必保留此出处http://zhaodongwei.blog.51cto.com/4233742/1880731

ipython安装