Skip to content

Commit 0c3e882

Browse files
committed
Improved pip and pytest commands
1 parent 4109393 commit 0c3e882

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The official Soundcraft Ui24R JSON snapshot export format is very hard to unders
1818
This utility is available as a Python package on **PyPI**:
1919

2020
```bash
21-
pip3 install ui24rsc
21+
python3 -mpip install ui24rsc
2222
```
2323

2424
## Usage
@@ -44,15 +44,15 @@ For more details on how to use this command, you can also refer to its help mess
4444
If you want to contribute to this project, you can install the package in **editable** mode:
4545

4646
```bash
47-
pip3 install -e . --user
47+
python3 -mpip install -e . --user
4848
```
4949

5050
This will just link the package to the original location, basically meaning any changes to the original package would reflect directly in your environment ([source](https://stackoverflow.com/a/35064498)).
5151

5252
If you want to run the tests, you'll have to install the `pytest` package and then run:
5353

5454
```bash
55-
pytest test
55+
python3 -mpytest test
5656
```
5757

5858
## Other useful stuff

0 commit comments

Comments
 (0)