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
The currently supported python version is ***Python 3.8.**** You need to have this version of python in your OS to continue any of the following steps.
10
+
11
+
**Method 1: with pipx**
12
+
13
+
The best way to setup any python app is manage it via [pipx](https://pypa.github.io/pipx/). Pipx is a standred pypi python application manager.
14
+
15
+
First, [Install pipx](https://pypa.github.io/pipx/installation/). Then run
16
+
17
+
```bash
18
+
$ pipx install chk
19
+
```
20
+
21
+
**Method 2: with pip (globally)**
22
+
23
+
Alternatively you can install with `pip` like other regular python package following these step. However, it will install the package globally.
24
+
25
+
```bash
26
+
$ python3 -m pip install -U pip # upgrade pip
27
+
$ python3 -m pip install -U chk
28
+
```
29
+
30
+
**Method 3: with pip (locally)**
31
+
32
+
To install under a seperate environment, that don't change your global package space. Install under a virtual env.
0 commit comments