Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the python version of already existing virtualenv? [duplicate]

I have created a virtual environment using python 3.6, then I've made a system upgrade and I've got python 3.7 installed system wide. Now I can't execute python files in that virtual environment because it's searching for python 3.6.

How can I upgrade the virtualenv python version to match the system wide version or how to downgrade the python version for that particular virtual environment?

I'm using manjaro.

like image 301
dAn Avatar asked Aug 19 '18 07:08

dAn


People also ask

Can I downgrade Python version in virtualenv?

You need to uninstall the existing python version and re-install the required python version and set up your environment.

Can we copy virtualenv?

virtualenv-clone will be installed inside newenv. Now while logged-in as newenv we can create a copy of any existing environment. For example creating the copy of ProjectAenv: (newenv): virtualenv-clone ProjectAenv ProjectBenv (newenv): deactivate # to come out from newenv.


1 Answers

EDIT 1

Did some testing and found another more "graceful" way to (at least) update the executable. Let's assume the virtual env was initially created like so virtualenv -p /path/to/my/python2.7 .venv. The executable can be updated to a specific python version like so: virtualenv --clear -p /path/to/my/python3.6 .venv. Please validate the python symlink in .venv/bin/python is updated using ls -la .venv/bin/python. The old executable(s) will still be in ./venv/bin/.

Note: You need to have the specific target version of python installed.


See this link which explains it well.

Virtualenvwrapper comes with some convenient commands for managing your virtualenvs.

To change your Python version:

  1. Deactivate your current environment session.

  2. If you have many packages or libraries installed, it would be a good idea to make a requirements.txt file. Remember to edit version as necessary.

  3. Remove the virtualenv with the wrapper command: rmvirtualenv

    • This will remove the virtualenv, but leave your project files.
  4. Make a new virtualenv with the Python version you want.

    • Example: mkvirtualenv -p python3 env-name

    • You can specify the Python version with the -p flag and version. If you have a requirements.txt file, you can specify that with -r requirements.txt

  5. Now bind your new virtualenv to your project directory. You can specify the full paths, but it is easier to have your new virtualenv activated and be in your project directory. Then, run the command:

Example: setvirtualenvproject

Please let me/us know if this answer was helpful to you!

like image 103
tahesse Avatar answered Sep 28 '22 04:09

tahesse