安装ipython


安装ipython必须要用python2.7以上的包,centos6.5上的python是2.6.6的,版本不够,所以要从官网下载python2.7.9的安装包


wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz


解压压缩包


xz -d
 Python-2.7.9.tar.xz


tar xvf
 Python-2.7.9.tar


yum install readline-devel   <-----一定要安装这个东东,不然后面安装好ipython后,就算命令写错,也不能删除,而且不能用tab键来自动补充命令,头大大的。。。


安装python2.7.9到/usr/local/python27


cd Python-2.7.9


./configure
 --prefix=/usr/local/python27


yum install gcc  <------centos 6.5没有自带gcc,这里要安装一下


make & make
 install


[[email protected]
 bin]# /usr/local/python27/bin/python2.7

Python 2.7.9
 (default, Dec 15 2014, 19:02:08)

[GCC 4.4.7
 20120313 (Red Hat 4.4.7-11)] on linux2

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

>>> ll


下载ipython


cd /usr/local/src/


wget https://pypi.python.org/packages/source/i/ipython/ipython-2.3.1.tar.gz#md5=2b7085525dac11190bfb45bb8ec8dcbf


tar zxvf
 ipython-2.3.1.tar.gz


用python2.7安装ipython


cd ipython-2.3.1


/usr/local/python27/bin/python2.7
 setup.py install


将安装的python2.7.9和ipython连接到/usr/bin/下


[[email protected] bin]# ln -sv /usr/local/python27/bin/python2.7
 /usr/bin/python27

`/usr/bin/python27‘
 -> `/usr/local/python27/bin/python2.7‘

[[email protected]
 bin]# ln -sv /usr/local/python27/bin/ipython /usr/bin/

`/usr/bin/ipython‘
 -> `/usr/local/python27/bin/ipython‘

ipython可以用了

[[email protected]
 bin]# ipython

WARNING: IPython
 History requires SQLite, your history will not be saved

WARNING: Readline
 services not available or not loaded.

WARNING: The
 auto-indent feature requires the readline library

Python 2.7.9
 (default, Dec 15 2014, 19:02:08)

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

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


至此,ipython安装完毕

时间: 2024-11-02 23:37:21

安装ipython的相关文章

Centos7下python3安装ipython

一.通过压缩包安装ipython 1.下载ipython安装包 [[email protected] ~]# wget https://pypi.python.org/packages/79/63/b671fc2bf0051739e87a7478a207bbeb45cfae3c328d38ccdd063d9e0074/ipython-6.1.0.tar.gz#md5=1e15e1ce3f3f722da6935d7ac0e51346 2.安装ipython [[email protected] ~

Python -- 关于pip安装Ipython

小Q:山外青山楼外楼,西湖歌舞几时休:暖风熏得游人醉,只把杭州比汴州.     --林升··题临安邸 ======================================================== 来到杭州的第18天,第一次孤身来到南方,每当周六日时孤独感袭来.无奈,只能寻求兴趣.学习,填补. 一直在实验用pip安装ipython的方式,遇到了一些问题,见下: 环境:centos 6 推荐源:wget   http://mirrors.aliyun.com/epel/epel-

CentOS7 安装 IPython

这是一个悲伤的安装ipython的过程. 写下来留个教训吧. 也是希望对博友一些帮助吧. 真正需要看的只是第一个部分和第五部分. 1.安装Python 1.1 下载Python-2.7.12 [[email protected] ~]# wget https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tar.xz 1.2 解压Python文件 [[email protected] ~]# tar xf Python-2.7.12.tar.x

【转载】在 Mac OS X El Capitan 文件权限问题解决方法 (以安装 IPython 和 XtraFinder为例)

转载者注:升级了EI Captitan后,Mac系统对很多文件的管理权限直接进行了锁死,root无法修改,目前据我所知受影响的包括vim的配置文件,Python的一些文件(Python转exe程序的工具也会出问题),本篇文章提供了一个很好的思路,我也是在安装ipython时搜到这篇文章的. 亲测原文内容可用,但是貌似还少了一个步骤,因为我完全按照原文内容安装后ipython找不到,还要在pip安装并更新后运行easy_install,这样的话可以将ipython加入/usr/bin/的路径中.

解决安装ipython时Command &quot;python setup.py egg_info&quot; failed with error code 1 in /tmp

最近使用ubuntu16.04 server版安装ipython的时候一直在报错: IPython 6.0+ does not support Python 2.6, 2.7, 3.0, 3.1, or 3.2.      When using Python 2.7, please install IPython 5.x LTS Long Term Support version. python2.7 ipython Command "python setup.py egg_info"

windows 安装ipython

以win7  64位系统, python2.7.9为例 1.下载材料http://files.cnblogs.com/files/smileyes/ipython-win64.zip 2.解压到本地,双击运行ipython-0.13.1.py2-win-amd64,会自动检索你安装的python,选择2.x版本[2.x和3.x版本都支持,可以运行两次将2.x和3.x都装上] 3.此时cmd输入ipython已经可以运行了,但是不够完美,因为没有tab联想功能和颜色标识,解压pyreadline-

Centos6.4安装ipython

ipython 是一个 python 的交互式 shell,比默认的python shell 好用得多,支持变量自动补全,自动缩进,支持 bash shell 命令,内置了许多很有用的功能和函数 安装环境 系统:CentOs6.4 python版本:Python-2.7.10 ipython版本:ipython-1.2.1 1. yum -y install readline-devel  安装readline开发包 2. ./configure --prefix=/usr/local/pyth

安装ipython以及完善ipython等功能

安装ipython 下载:ipython-2.3.0.tar.gz及ActivePython-2.7.8.10-linux-x86_64.tar.gz和readline-6.2.4.1.tar.gz 安装Python2.7: tar zxvf ActivePython-2.7.8.10-linux-x86_64.tar.gz cd ActivePython-2.7.8.10-linux-x86_64 ./install.sh ln -s /opt/ActivePython-2.7/bin/* /

Mac系统下安装ipython分别支持python2和python3

操作系统:Mac10.11.5 python2.7.13 python3.6.1 安装python2: brew install python 安装python3: brew install python3 此时,命令行输入python3则打开python3,输入python则打开python2. 利用pip安装 ipython sudo pip install ipython sudo pip3 install ipython 用pip安装ipython则是安装到python2的site-pa