ChirpOnLinux » History » Version 1
Dan Smith, 01/14/2023 04:22 PM
1 | 1 | Dan Smith | # Running CHIRP on Linux |
---|---|---|---|
2 | |||
3 | This page describes how to get the newer python3-based CHIRP-next running on Linux. |
||
4 | |||
5 | ## Debian, Ubuntu, Mint, Raspbian, etc |
||
6 | |||
7 | Install prerequisite packages: |
||
8 | |||
9 | ``` |
||
10 | $ sudo apt install git python3-wxgtk4.0 python3-serial python3-six python3-future python3-requests python3-pip |
||
11 | ``` |
||
12 | |||
13 | You should be able to install either the wheel or the tarball using `pip`: |
||
14 | |||
15 | ``` |
||
16 | $ pip3 install chirp-next-20230114.tar.gz |
||
17 | ``` |
||
18 | > **_NOTE:_** Your system may install `pip` as `pip3` like above, or just `pip` |
||
19 | |||
20 | If you run the above command as a regular user, the `chirp` executable will be installed into `~/.local/bin/chirp`. If you run it as root, then it will be in `/usr/local/bin/chirp` as you might normally expect. |