Skip to content

Commit 545b834

Browse files
committed
📝 add pipx as default install
1 parent 1f922d9 commit 545b834

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,37 @@
2929

3030
# 🛠 Installation
3131

32+
## Recommended: Using pipx (isolated environment)
33+
34+
[pipx](https://pipx.pypa.io/) installs the CLI in an isolated environment, avoiding conflicts with other packages:
35+
36+
```sh
37+
# Install pipx if you haven't already
38+
python3 -m pip install --user pipx
39+
python3 -m pipx ensurepath
40+
41+
# Install pls-cli
42+
pipx install pls-cli
43+
```
44+
45+
## Alternative: Using pip
46+
3247
```sh
3348
pip install pls-cli
3449
```
3550

51+
> **Note**: Installing with pip may cause dependency conflicts with other packages. We recommend using pipx for CLI tools.
52+
3653
# ⬆️ Upgrade version
3754

55+
## With pipx (recommended)
56+
57+
```sh
58+
pipx upgrade pls-cli
59+
```
60+
61+
## With pip
62+
3863
```sh
3964
pip install pls-cli --upgrade
4065
```

0 commit comments

Comments
 (0)