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: docs/setup.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,21 @@
2
2
title: Setup toolbox
3
3
---
4
4
5
-
### Install _CHKware_ toolset with Pipx
6
-
7
5
This section describe the installation process for [_CHKware_](https://github.com/chkware/cli). The currently supported python version is **_Python 3.11.x_**. You need to have this version of python in your OS to continue.
8
6
9
-
The best way to setup any python app is manage it via [pipx](https://pypa.github.io/pipx/). Pipx is a standard PyPi python application manager.
7
+
### Install _CHKware_ toolset with Pip
8
+
9
+
If you have _Python 3.11.x_ installed, then you already have `pip` installed by default. So, just run following command.
10
+
11
+
```bash
12
+
pip install -U chk
13
+
```
14
+
15
+
To upgrade to the next released version, run the same command.
16
+
17
+
### Install _CHKware_ toolset with Pipx
18
+
19
+
The best way to setup any python app is manage it via [pipx](https://pypa.github.io/pipx/). Pipx is a standard PyPi python application manager. Pipx creates separate virtual environment for given installable package. So, your system have less side effect.
10
20
11
21
First, [Install pipx](https://pypa.github.io/pipx/installation/). Then run
0 commit comments