vevn

# Create a venv
$ python -m venv venv

# Activate the venv
$ source venv/bin/activate

# Install the tool
$ pip install -r requirements.txt

# List installed packages
$ ls venv/lib/python3.12/site-packages/

# Run the tool
$ python <tool>

# Deactivate the venv

$ deactivate
# Remove the venv

$ rm -rf venv/

Last updated

Was this helpful?