Refer to pip3 (#172)

This commit is contained in:
Kirill Müller 2022-10-25 15:44:52 +02:00 committed by GitHub
parent b05a46de84
commit cd0a79d4e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Translation: updated Swedish translation (thanks to @eson57) - Translation: updated Swedish translation (thanks to @eson57)
- Documentation: prefer `pip3` over `pip` to ensure it works everywhere (thanks to @krlmlr)
## 0.7.7 - 2022-10-23 ## 0.7.7 - 2022-10-23
### Changed ### Changed

View File

@ -53,13 +53,13 @@ _Note: Tested on macOS 12.5 (Monterey)_
To install the requirements just to execute the binary, run: To install the requirements just to execute the binary, run:
```sh ```sh
pip install -r requirements.txt pip3 install -r requirements.txt
``` ```
For developer tools, run this one instead (it includes requirements.txt): For developer tools, run this one instead (it includes requirements.txt):
```sh ```sh
pip install -r requirements.dev.txt pip3 install -r requirements.dev.txt
``` ```
## Setup ## Setup