<div dir="ltr"><div><br></div>Fedora used to package chirp, but removed it in Fedora 31 (along with most python2 packages)<br><br>I found a way to install it :<div><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">sudo dnf install pygtk2 # this includes python2<br></blockquote><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">python2 -m ensurepip --user<br>export PATH=$PATH:~/.local/bin<br>pip2 install pyserial --user<br></blockquote><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"># get the latest chirp tarball from <a href="https://trac.chirp.danplanet.com/chirp_daily/LATEST">https://trac.chirp.danplanet.com/chirp_daily/LATEST</a> , eg :<br>u0=chirp-daily-20210310<br>url0=<a href="https://trac.chirp.danplanet.com/chirp_daily/LATEST/$u0.tar.gz">https://trac.chirp.danplanet.com/chirp_daily/LATEST/$u0.tar.gz</a><br>wget -O - $url0 | tar xz<br>cd $u0<br></blockquote><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">python2 setup.py install --user<br>This give an error : ImportError: No module named libxml2 , so I edit chirp/drivers/generic_xml.py and comment out &quot;import libxml2&quot; (on line 17) and rerun :<br>python2 setup.py install --user<br></blockquote><div> </div></div></div>