Jonathan Livni
Jonathan Livni

Reputation: 107232

easy_install with pypy while Python is installed

I installed PyPy while still having Python 2.7 on my system.

I'm on Windows, but these questions seem relevant for all platform...

Upvotes: 8

Views: 7816

Answers (3)

Vajk Hermecz
Vajk Hermecz

Reputation: 5722

An alternative solution is to install pip. Following the instructions in pip's documentation:

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

Upvotes: 5

user2947263
user2947263

Reputation: 21

At least this worked for me:

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

Upvotes: 2

Julien Chappuis
Julien Chappuis

Reputation: 349

You need to install easy_install for pypy manually.

It's explained in the answer to this question : Installing Python eggs under PyPy

Upvotes: 5

Related Questions