How to Create a VirtualEnv

Last modified by Leon Poon on 2021/03/23 13:16

In a console, change directory to the parent directory where you want the virtual env to be.

Make sure the virtualenv tool is installed.

In the console, run:

virtualenv -p $(which python3) your_venv_dir_name_here

(Make sure you replace your_venv_dir_name_here with the desired name.)