blob: 327e79a999b5e8a64c9914801c095bb2ac734e38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
Install ArGaze
==============
!!! note
*Consider that all inline commands below have to be executed into ArGaze root folder.*
Install build tool package:
```console
pip install build
```
Then, build ArGaze package:
```console
python -m build
```
Then, install ArGaze package (replace VERSION by what has been built into dist folder):
```console
pip install ./dist/argaze-VERSION.whl
```
!!! note
**As Argaze library developper**
*You should prefer to install the package in developer mode to test live code changes:*
```
pip install -e .
```
|