8

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

  • 如何安装 PyPy,然后easy_install与 PyPy 一起使用?
  • 区分我想安装到哪里的语法是什么easy_install
  • 我应该设置任何环境变量以方便使用吗?

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

4

3 回答 3

5

您需要手动为 pypy 安装 easy_install。

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

于 2011-12-28T14:40:43.443 回答
5

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

wget https://bootstrap.pypa.io/get-pip.py
pypy get-pip.py
pypy -m pip install ipython
于 2015-03-01T03:35:26.470 回答
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.
于 2013-11-02T07:18:50.263 回答