我在我的系统上安装了Python 2.7时安装了PyPy。
easy_install
?easy_install
区分我要安装的位置的语法是什么?我在Windows上,但这些问题似乎与所有平台相关......
答案 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.