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