Skip to content

Commit 018dda8

Browse files
committed
docs: Add upgrade strategy to installation notes
1 parent 88e20f3 commit 018dda8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ In most cases it should be possible to install Software Accounting as long as Py
44

55
## Virtual environment
66

7-
An easy opyion to install and update Software Accounting is to install it in a Python virtual environment. Create the Python virtual environment where you want it installed, and install Software Accounting using pip. Pip will install Software Accounting from the Python Packaging Index (PyPI).
7+
Using a Python virtual environment makes it simple to install and update Software Accounting, and its dependencies. Create the Python virtual environment where you want it installed, and install Software Accounting using pip. Pip will install Software Accounting from the Python Packaging Index (PyPI).
88

99
```
1010
python -m venv /opt/softwareaccounting
1111
/opt/softwareaccounting/bin/pip install softwareaccounting
1212
```
1313

14-
You can then update Software Accounting as new releases are published to PyPI.
14+
You can then update Software Accounting and its dependencies as new releases are published to PyPI.
1515

1616
```
17-
/opt/softwareaccounting/bin/pip install --upgrade softwareaccounting
17+
/opt/softwareaccounting/bin/pip install --upgrade --upgrade-strategy=eager softwareaccounting
1818
```
1919

20-
The POST Receiver is optional, it will not be installed by default but it can be installed with pip.
20+
The POST Receiver is optional, add it as an extras if needed when installing.
2121

2222
```
2323
/opt/softwareaccounting/bin/pip install 'softwareaccounting[post-receiver]'

0 commit comments

Comments
 (0)