Recommend user installs when upgrading
the build was successful Details

This commit is contained in:
Luke Murphy 2019-05-13 13:18:59 +02:00
parent 15cb6270ef
commit f9dce8b2d3
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ In general, all you should need to do to upgrade borgmatic is run the
following: following:
```bash ```bash
sudo pip3 install --upgrade borgmatic sudo pip3 install --user --upgrade borgmatic
``` ```
See below about special cases. See below about special cases.
@ -25,14 +25,14 @@ already running borgmatic with Python 3, then you can upgrade borgmatic
in-place: in-place:
```bash ```bash
sudo pip3 install --upgrade borgmatic sudo pip3 install --user --upgrade borgmatic
``` ```
But if you were running borgmatic with Python 2, uninstall and reinstall instead: But if you were running borgmatic with Python 2, uninstall and reinstall instead:
```bash ```bash
sudo pip uninstall borgmatic sudo pip uninstall borgmatic
sudo pip3 install borgmatic sudo pip3 install --user borgmatic
``` ```
The pip binary names for different versions of Python can differ, so the above The pip binary names for different versions of Python can differ, so the above
@ -67,7 +67,7 @@ from atticmatic to borgmatic by running the following commands:
```bash ```bash
sudo pip3 uninstall atticmatic sudo pip3 uninstall atticmatic
sudo pip3 install borgmatic sudo pip3 install --user borgmatic
``` ```
That's it! borgmatic will continue using your /etc/borgmatic configuration That's it! borgmatic will continue using your /etc/borgmatic configuration