You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,21 @@ Visit the [Wiki](../../wiki) for more information.
12
12
13
13
## Install
14
14
15
-
Install via PyPI:
15
+
We recommend installing `linode-cli` with `pipx`, which installs each Python CLI tool into its own isolated environment and works on distributions where `pip install` fails because the system Python is marked as externally managed ([PEP 668](https://peps.python.org/pep-0668/)). If pipx isn't installed yet, follow the [pipx installation guide](https://pipx.pypa.io/latest/how-to/install-pipx.html).
16
+
17
+
To install:
18
+
19
+
```bash
20
+
pipx install linode-cli
21
+
```
22
+
23
+
To upgrade:
24
+
16
25
```bash
17
-
pip3 install linode-cli
26
+
pipx upgrade linode-cli
18
27
```
19
28
20
-
Visit the [Wiki](../../wiki/Installation)for more information.
29
+
The [Wiki](https://github.com/linode/linode-cli/wiki/Installation)covers other installation methods, including the Docker image, the GitHub Action, and building from source.
0 commit comments