aboutsummaryrefslogtreecommitdiff
path: root/docs/installation.md
blob: 4b84a19189adbb81d2b049383c70d19fb6a077dd (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
title: Package installation
---

How to install ArGaze
=====================

!!! warning

    *ArGaze is not yet in public repository: [contact ACHIL laboratory](mailto:achil-contact@recherche.enac.fr) to get in touch.*

Clone ArGaze repository:

```console
git clone ssh://git@git.recherche.enac.fr/interne-ihm-aero/eye-tracking/argaze.git
```

!!! note

    *Consider that all inline commands below have to be executed at the root of ArGaze package 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 contributor**  
    *You should prefer to install the package in developer mode to test live code changes:*

    ```
    pip install -e .
    ```