Skip to content

Commit 96ec961

Browse files
committed
CONTRIBUTING: Update instructions for creating virtualenv
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
1 parent b48317c commit 96ec961

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ Note: Some steps are OPTIONAL but all are RECOMMENDED.
1919
$ cd podman-compose
2020
```
2121

22-
2. (OPTIONAL) Create a Python virtual environment. Example using
23-
[virtualenv wrapper](https://virtualenvwrapper.readthedocs.io/en/latest/):
22+
2. (OPTIONAL) Create a Python virtual environment. Example using python builtin
23+
`venv` module:
2424

2525
```shell
26-
$ mkvirtualenv podman-compose
26+
$ python3 -m venv .venv
27+
$ . .venv/bin/activate
2728
```
2829

2930
3. Install the project runtime and development requirements:

0 commit comments

Comments
 (0)