Skip to content

Commit

Permalink
docs: use python3 -m pip instead of pip
Browse files Browse the repository at this point in the history
  • Loading branch information
gotmax23 committed Jul 13, 2023
1 parent e460c40 commit 510b2a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ This only needs to be done once.
rm -rf release-venv
python3 -m venv release-venv
. ./release-venv/bin/activate
pip install -U pip
python3 -m pip install -U pip
```

Install the `antsibull`, `ansible-core`, and `twine` python packages,
as well as the community.general collection.

```
pip install antsibull ansible-core twine
python3 -m pip install antsibull ansible-core twine
ansible-galaxy collection install --force community.general
```

Expand Down

0 comments on commit 510b2a3

Please sign in to comment.