Forums

This virtualenv seems to have the wrong Python version (2.7 instead of 3.4).

I intentionally set it up that way. Why do I get this message? is there a way to change the versiont? Or do I have to delete it and start anew? If so is there a way to save and restore the files I've created?

If the virtualenv has a different Python version to the web app, your web app will not work. You either need to change the web app Python version or the virtualenv Python if you want it to work.

What files have you created in the virtualenv? The virtualenv should only be for installing Python packages and you can get a list of those with pip freeze > requirements.txt then you can re-create it with pip install -r requirements.txt