I'm trying to migrate my web app to django16 so I've deleted my original app and now trying to set up the virtual env using django 1.6 and python 3--
following the wiki I tried
mkvirtualenv --python=python3 django16
but got the error
The executable python3 (from --python=python3) does not exist
I'm stumped.
I already had set up a virtual env with python 2.7 (suggestion: move the note re python 3 to the top of the instructions) but wasn't sure how to "delete" it (I am inexperienced with this) — could that have something to do with it?
As an additional question: when I deleted my web app it kept the source files for the app. Is there any easy way to move them to my new virtualenv, so I can just run the app under django 1.6?