CONTRIBUTING: Update instructions for creating virtualenv

Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
This commit is contained in:
Povilas Kanapickas
2025-06-26 14:36:26 +03:00
parent b48317c22b
commit 96ec9617f1

View File

@ -19,11 +19,12 @@ Note: Some steps are OPTIONAL but all are RECOMMENDED.
$ cd podman-compose $ cd podman-compose
``` ```
2. (OPTIONAL) Create a Python virtual environment. Example using 2. (OPTIONAL) Create a Python virtual environment. Example using python builtin
[virtualenv wrapper](https://virtualenvwrapper.readthedocs.io/en/latest/): `venv` module:
```shell ```shell
$ mkvirtualenv podman-compose $ python3 -m venv .venv
$ . .venv/bin/activate
``` ```
3. Install the project runtime and development requirements: 3. Install the project runtime and development requirements: