
venv
List of commands for venv:
-
venv:tldr:6a5fd venv: Activate the virtual environment (Linux and Mac OS).$ source ${path-to-virtual_environment}/bin/activatetry on your machineexplain this command
-
venv:tldr:82250 venv: Deactivate the virtual environment.$ deactivatetry on your machineexplain this command
-
venv:tldr:a3ac1 venv: Create a python virtual environment.$ python -m venv ${path-to-virtual_environment}try on your machineexplain this command
-
venv:tldr:d59ea venv: Activate the virtual environment (Windows).$ ${path\to\virtual_environment}\Scripts\activate.battry on your machineexplain this command