Recommend user installs when upgrading
This commit is contained in:
parent
15cb6270ef
commit
f9dce8b2d3
1 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@ In general, all you should need to do to upgrade borgmatic is run the
|
|||
following:
|
||||
|
||||
```bash
|
||||
sudo pip3 install --upgrade borgmatic
|
||||
sudo pip3 install --user --upgrade borgmatic
|
||||
```
|
||||
|
||||
See below about special cases.
|
||||
|
@ -25,14 +25,14 @@ already running borgmatic with Python 3, then you can upgrade borgmatic
|
|||
in-place:
|
||||
|
||||
```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:
|
||||
|
||||
```bash
|
||||
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
|
||||
|
@ -67,7 +67,7 @@ from atticmatic to borgmatic by running the following commands:
|
|||
|
||||
```bash
|
||||
sudo pip3 uninstall atticmatic
|
||||
sudo pip3 install borgmatic
|
||||
sudo pip3 install --user borgmatic
|
||||
```
|
||||
|
||||
That's it! borgmatic will continue using your /etc/borgmatic configuration
|
||||
|
|
Loading…
Reference in a new issue