Projet

Général

Profil

Wiki » Historique » Version 9

Patrice Nadeau, 2020-10-11 11:11

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