Switch to pipx instead of pip in README.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Dan Helfman 2023-10-20 14:36:38 -07:00
parent bd875013b2
commit 5a0bde193f
1 changed files with 5 additions and 5 deletions

View File

@ -57,11 +57,11 @@ total: 946 words
## Installation
Start by cloning the project with git. Then install it with Python's `pip`.
Example:
Start by cloning the project with git. Then install it with
[pipx](https://pypa.github.io/pipx/). Example:
```bash
pip3 install /path/to/novel-stats
pipx install /path/to/novel-stats
```
## Usage
@ -226,7 +226,7 @@ make sure your changes work.
```bash
cd novel-stats/
pip3 install --editable --user .
pipx install --editable .
```
Note that this will typically install the novel-stats commands into
@ -245,7 +245,7 @@ you're in the `novel-stats/` working copy, install tox, which is used for
setting up testing environments:
```bash
pip3 install --user tox
pipx install tox
```
Finally, to actually run tests, run: