安装Python时,使用pypy easy_install

时间:2011-12-28 11:09:55

标签: python setuptools easy-install pypy distribute

我在我的系统上安装了Python 2.7时安装了PyPy

  • 如何在PyPy中安装然后使用easy_install
  • 使用easy_install区分我要安装的位置的语法是什么?
  • 我应该设置任何环境变量以方便使用吗?

我在Windows上,但这些问题似乎与所有平台相关......

3 个答案:

答案 0 :(得分:5)

您需要手动安装easy_install for pypy。

在这个问题的答案中解释了这一点: Installing Python eggs under PyPy

答案 1 :(得分:5)

另一种解决方案是安装pip。按照pip's documentation中的说明进行操作:

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

答案 2 :(得分:2)

至少这对我有用:

$ 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.