File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 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
3348pip 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
3964pip install pls-cli --upgrade
4065```
You can’t perform that action at this time.
0 commit comments