How do I install Python egg under PyPy?
During installation, PyPy created /usr/lib64/pypy-1.5/site-packages/
directory. So, I tried using easy_install with prefix set to this directory, however it complains that this is not a valid directory for eggs. Do I just copy eggs from /usr/lib/python2.7/site-packages
, or is it as easy as using easy_install (with some changes in configuration, perhaps)?
My working environment is Fedora 15 Beta, Python 2.7.1 (/usr/bin/python
), PyPy 1.5.0-alpha0 with GCC 4.6.0 (in /usr/bin/pypy
, installed from RPM using yum), easy_install version is: distribute 0.6.14 (usr/bin/easy_install
).
/usr/bin/easy_install
was in fact part of CPython. However, I just downloadeddistribute_setup.py
and ran it with pypy. It installed easy_install into/usr/lib64/pypy-1.5/bin
(so it didn't override any CPython-related files - probably because of different PYTHONPATH of CPython and PyPy). – Disused