Issue
How do I use ipython on top of a pypy interpreter rather than a cpython interpreter? ipython website just says it works, but is scant on the details of how to do it.
Solution
You can create a PyPy virtualenv :
virtualenv -p /path/to/pypy <venv_dir>
Activate the virtualenv
source <venv_dir>/bin/activate
and install ipython
pip install ipython
Answered By - rguillebert
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.