After a while of searching (maybe it's not enough, but I don't think I'm making progress doing that), I haven't been able to find information about compatibility of other Python implementations in virtualenv/virtualenvwrapper. By "other implementation" I mean things like PyPy, IronPython, Cython, Jython...
for example, I can create a virtualenv for a different python version using the following code .
mkvirtualenv -p /usr/bin/python2.6 new_venv
but when I tried to create a virtualenv for PyPy by:
mkvirtualenv -p /usr/bin/pypy new_venv
system throws some error.
EDIT: I'm using virtualenvwrapper-win. it throws
Running virtualenv with interpreter C:\pypy2-v5.8.0-win32\pypy.exe
New pypy executable in C:\Users\fangming.zfm\Envs\test-123\bin\pypy.exe
Installing setuptools, pip, wheel...done.
system cannot find the path specified.
system cannot find the path specified.
system cannot find the path specified.
why we can't do this? is it because of lack of interest, or is it technically infeasible?