Projet

Général

Profil

Wiki » Historique » Version 7

Patrice Nadeau, 2019-01-06 17:28

1 4 Patrice Nadeau
# CHIRP
2 1 Patrice Nadeau
3 4 Patrice Nadeau
## Installation 
4
> Sous openSUSE Leap 15
5
6 5 Patrice Nadeau
L'utilisateur doit-être membre du groupe **`dialout`**
7 1 Patrice Nadeau
8 2 Patrice Nadeau
* Installer les modules prérequis (Pyhton)
9
10
    ```bash
11
    sudo zypper install python python-libxml2-python python-pyserial
12
    ```
13
* Téléchargement
14
15
    ```bash
16
    wget https://trac.chirp.danplanet.com/chirp_daily/LATEST/chirp-daily-20190104.tar.gz
17
    ```
18
19
* Décompresser le fichier
20
21
    ```bash
22
    tar xvf chirp-daily-20190104.tar.gz
23
    ```
24
25 6 Patrice Nadeau
* Compiler et installer l'application
26 2 Patrice Nadeau
27
    ```bash
28 1 Patrice Nadeau
    cd chirp-daily-20190104
29 6 Patrice Nadeau
    python setup.py build
30
    sudo pyhton setup.py install
31 2 Patrice Nadeau
    ```
32 7 Patrice Nadeau
33
* Enlever le répertoire d'installation
34
    ```bash
35
    sudo rm -r chirp-daily-20190104
36
    ```