<div dir="ltr">Try running the following command<div><br></div><div>pip3 install -U gtk</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Oct 4, 2019 at 8:45 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">The &#39;&gt;&#39; symbols got mangled in my previous email, so here is a corrected email.<br>
<br>
This sequence fails to find gtk:<br>
<br>
saf$ python3<br>
Python 3.7.4 (default, Jul  9 2019, 16:32:37) <br>
[GCC 9.1.1 20190503 (Red Hat 9.1.1-1)] on linux<br>
Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>
 &gt;&gt;&gt; import gtk<br>
Traceback (most recent call last):<br>
  File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;<br>
ModuleNotFoundError: No module named &#39;gtk&#39;<br>
<br>
But this sequence works:<br>
<br>
saf$ python3<br>
Python 3.7.4 (default, Jul  9 2019, 16:32:37) <br>
[GCC 9.1.1 20190503 (Red Hat 9.1.1-1)] on linux<br>
Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>
 &gt;&gt;&gt; import gi<br>
 &gt;&gt;&gt; gi.require_version(&#39;Gtk&#39;, &#39;3.0&#39;)<br>
 &gt;&gt;&gt; from gi.repository import Gtk<br>
 &gt;&gt;&gt;<br>
<br>
Is there something that I need to install?  I&#39;m a complete python noob.<br>
<br>
        Steve<br>
</blockquote></div>