We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b48317c commit 96ec961Copy full SHA for 96ec961
CONTRIBUTING.md
@@ -19,11 +19,12 @@ Note: Some steps are OPTIONAL but all are RECOMMENDED.
19
$ cd podman-compose
20
```
21
22
-2. (OPTIONAL) Create a Python virtual environment. Example using
23
- [virtualenv wrapper](https://virtualenvwrapper.readthedocs.io/en/latest/):
+2. (OPTIONAL) Create a Python virtual environment. Example using python builtin
+ `venv` module:
24
25
```shell
26
- $ mkvirtualenv podman-compose
+ $ python3 -m venv .venv
27
+ $ . .venv/bin/activate
28
29
30
3. Install the project runtime and development requirements:
0 commit comments