easy_install with pypy,同时安装Python



我安装了PyPy,而我的系统上仍然有Python 2.7。

  • 我如何安装和使用easy_install与PyPy?
  • 区分我想安装到easy_install的位置的语法是什么?
  • 为了方便使用,我应该设置任何环境变量吗?

我使用的是Windows,但这些问题似乎适用于所有平台…

您需要手动安装easy_install for pypy

在这个问题的答案中有解释:在PyPy下安装Python蛋

另一个解决方案是安装pip。遵循pip文档中的说明:

wget https://bootstrap.pypa.io/get-pip.py
pypy get-pip.py
pypy -m pip install ipython

至少这对我有用:

$ brew install pypy
$ pypy -m easy_install ipython
$ /usr/local/share/pypy/ipython
Python 2.7.3 (480845e6b1dd, Jul 31 2013, 10:58:28)
Type "copyright", "credits" or "license" for more information.
IPython 1.1.0 -- 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.

相关内容

  • 没有找到相关文章

最新更新