I am trying to understand how to create a python sandbox using an alternate version of Python that is different from the standard (in my case, Python 2.7). virtualenv runs on my system with Python 2.7, but I cannot create a virtual environment with Python 3.
I tried to specify the version of Python described in this post , for example:
$ virtualenv -p /usr/bin/python3.2
Can someone explain how I can create virtualenv with a specific version of Python? Thank you very much.
source share