Skip to content

Commit 06b75fb

Browse files
committed
Improved pip and pytest commands
1 parent f5d14a7 commit 06b75fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Inspired by **PAC** (_Pre-Authorized Contribution_ plan) and [Smart PAC](https:/
1212
This utility is available as a Python package on **PyPI**:
1313

1414
```bash
15-
pip3 install smartchg
15+
python3 -mpip install smartchg
1616
```
1717

1818
## Usage
@@ -114,13 +114,13 @@ $$ S = 500 \cdot (1 - (-1) \cdot 0.10) = 500 \cdot 1.1 = 550 $$
114114
If you want to contribute to this project, you can install the package in **editable** mode:
115115

116116
```bash
117-
pip3 install -e . --user
117+
python3 -mpip install -e . --user
118118
```
119119

120120
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)).
121121

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

124124
```bash
125-
pytest test
125+
python3 -mpytest test
126126
```

0 commit comments

Comments
 (0)