Home Python Virtual Enviroment (with specific python version)
Post
Cancel

Python Virtual Enviroment (with specific python version)

To create a Python 3 virtual environment with a specific version of Python, follow these steps:

  1. Install the virtualenv package using pip: pip install virtualenv
  2. Create a new virtual environment with the desired Python version by specifying the version number
    with the -p flag, like this: virtualenv -p /usr/bin/python3.6 my_env
  3. Activate the virtual environment by running the following command: source my_env/bin/activate

Once your virtual environment is activated, you can begin installing packages and using Python with the specific version you selected.

When you are finished working in the virtual environment, you can deactivate it by running the deactivate command.

This post is licensed under CC BY 4.0 by the author.