尝试在版本 2.7 上安装 Ipython 但它一直尝试在版本 2.5 上安装
我正在尝试将 Ipython 0.12 安装到 python 2.7 上。因为我使用的是 MacBook,Python 2.5 已经作为 OSX 上的标准安装,当我尝试使用 python setup.py install
安装 ipython 时,我收到一条消息,提示 ERROR: 'IPython require Python Version 2.6 或更高版本。'
我相信它正在尝试在 2.5 版本上安装 ipython
我如何更改它以安装在我使用的 2.7 版本上。
I am trying to install Ipython 0.12 on to python 2.7. Because I'm using a MacBook python 2.5 was already installed as standard on OSX, when i try installing ipython with python setup.py install
I get a message saying ERROR: 'IPython requires Python Version 2.6 or above.'
I believe it is trying to install ipython on version 2.5
How can I change that to install on version 2.7 which is the one I use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重新发布作为答案:
应该有一个类似
python2.7
的名称,因此运行python2.7 setup.py install
将为 Python 2.7 安装它。这对于所有包都是一样的。如果你想使用easy_install或pip等工具,还需要安装相应版本的Python。
Reposting as an answer:
There should be a name like
python2.7
, so runningpython2.7 setup.py install
will install it for Python 2.7. This is the same for all packages.If you want to use a tool like easy_install or pip, they also need to be installed for the relevant version of Python.