我安装了PyPy,同时我的系统上仍然有 Python 2.7。
- 如何安装 PyPy,然后
easy_install
与 PyPy 一起使用? - 区分我想安装到哪里的语法是什么
easy_install
? - 我应该设置任何环境变量以方便使用吗?
我在 Windows 上,但这些问题似乎与所有平台都相关......
我安装了PyPy,同时我的系统上仍然有 Python 2.7。
easy_install
与 PyPy 一起使用?easy_install
?我在 Windows 上,但这些问题似乎与所有平台都相关......
您需要手动为 pypy 安装 easy_install。
在这个问题的答案中有解释: Installing Python eggs under PyPy
另一种解决方案是安装 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.