Projet

Général

Profil

Wiki » Historique » Version 8

Patrice Nadeau, 2019-01-06 17:31

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