How to use venv in Python
26 April 2025
Open terminal, choose your working project directory and type this:
python -m venv .venv
To activate, on widows:
.venv\Scripts\activate
on Linux:
source .venv/bin/activate
26 April 2025
Open terminal, choose your working project directory and type this:
python -m venv .venv
To activate, on widows:
.venv\Scripts\activate
on Linux:
source .venv/bin/activate