需要ipython for python 2.6.1卸载吗?

时间:2011-04-09 19:52:49

标签: python ipython

我使用easy_install为python 2.6.1安装了ipython。在意识到我需要2.7版本来使用matplotlib之后,我下载并安装了资源以使用suthon与python 2.7一起使用ipython。我是否需要卸载“旧”ipython?如果是,我该怎么做?

1 个答案:

答案 0 :(得分:1)

不,你不应该,ipython包数据存储在你安装它的python版本的site-packages目录中,ipython可执行文件基本上包含

#!/usr/bin/python
# -*- coding: utf-8 -*-

""" 
    long comment about IPython.Shell that you 
    might want to read; omitted here for brevity 
"""
import IPython.Shell

IPython.Shell.start().mainloop()

它将使用默认的python版本运行,如果你的默认版本的python是2.6,你可以直接使用:/path/to/python2.7 /path/to/ipython调用2.7版本