<div dir="ltr">Hm. Hopefully a core Chirp dev can respond. I&#39;m not familiar with the codebase.<div><br></div><div>Sorry I&#39;m not more help.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Oct 4, 2019 at 10:05 AM Steven A. Falco &lt;<a href="mailto:stevenfalco@gmail.com">stevenfalco@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Here is the output of that command:<br>
<br>
saf$ pip3 install -U gtk<br>
Collecting gtk<br>
  Could not find a version that satisfies the requirement gtk (from versions: )<br>
No matching distribution found for gtk<br>
<br>
<br>
<br>
As an experiment, I tried modifying importdialog.py, replacing the &quot;import gtk&quot; line with:<br>
<br>
import gi<br>
gi.require_version(&#39;Gtk&#39;, &#39;3.0&#39;)<br>
from gi.repository import Gtk as gtk<br>
<br>
I also had to change &quot;tips = gtk.Tooltips()&quot; to &quot;tips = gtk.Tooltip()&quot;, because they appear to have dropped the plural &quot;s&quot; from the class name.<br>
<br>
However, the new &quot;Tooltip&quot; class seems to be different from the previous &quot;Tooltips&quot; class, because now I get this exception:<br>
<br>
RROR: -- Exception: --<br>
ERROR: Traceback (most recent call last):<br>
  File &quot;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/editorset.py&quot;, line 361, in do_export<br>
    dst_rthread)<br>
  File &quot;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/editorset.py&quot;, line 252, in _do_import_locked<br>
    dialog = dlgclass(src_radio, dst_rthread.radio, self.parent_window)<br>
  File &quot;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/importdialog.py&quot;, line 628, in __init__<br>
    self.build_ui()<br>
  File &quot;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/importdialog.py&quot;, line 506, in build_ui<br>
    self.vbox.pack_start(self.make_view(), 1, 1, 1)<br>
  File &quot;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/importdialog.py&quot;, line 333, in make_view<br>
    tips.set_tip(lab, self.tips[k])<br>
AttributeError: &#39;Tooltip&#39; object has no attribute &#39;set_tip&#39;<br>
<br>
Again, I&#39;m a python noob, but it looks like the python3 Gtk tooltip API has changed such that set_tip has been removed.<br>
<br>
        Steve<br>
<br>
<br>
On 10/4/19 11:51 AM, David Boucha wrote:<br>
&gt; Try running the following command<br>
&gt; <br>
&gt; pip3 install -U gtk<br>
&gt; <br>
&gt; On Fri, Oct 4, 2019 at 8:45 AM Steven A. Falco &lt;<a href="mailto:stevenfalco@gmail.com" target="_blank">stevenfalco@gmail.com</a> &lt;mailto:<a href="mailto:stevenfalco@gmail.com" target="_blank">stevenfalco@gmail.com</a>&gt;&gt; wrote:<br>
&gt; <br>
&gt;     The &#39;&gt;&#39; symbols got mangled in my previous email, so here is a corrected email.<br>
&gt; <br>
&gt;     This sequence fails to find gtk:<br>
&gt; <br>
&gt;     saf$ python3<br>
&gt;     Python 3.7.4 (default, Jul  9 2019, 16:32:37)<br>
&gt;     [GCC 9.1.1 20190503 (Red Hat 9.1.1-1)] on linux<br>
&gt;     Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>
&gt;      &gt;&gt;&gt; import gtk<br>
&gt;     Traceback (most recent call last):<br>
&gt;       File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;<br>
&gt;     ModuleNotFoundError: No module named &#39;gtk&#39;<br>
&gt; <br>
&gt;     But this sequence works:<br>
&gt; <br>
&gt;     saf$ python3<br>
&gt;     Python 3.7.4 (default, Jul  9 2019, 16:32:37)<br>
&gt;     [GCC 9.1.1 20190503 (Red Hat 9.1.1-1)] on linux<br>
&gt;     Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>
&gt;      &gt;&gt;&gt; import gi<br>
&gt;      &gt;&gt;&gt; gi.require_version(&#39;Gtk&#39;, &#39;3.0&#39;)<br>
&gt;      &gt;&gt;&gt; from gi.repository import Gtk<br>
&gt;      &gt;&gt;&gt;<br>
&gt; <br>
&gt;     Is there something that I need to install?  I&#39;m a complete python noob.<br>
&gt; <br>
&gt;             Steve<br>
&gt; <br>
<br>
</blockquote></div>