<!DOCTYPE html>
<html><head>
    <meta charset="UTF-8">
</head><body><p>You go to here:&#160;&#160;<a href="http://intrepid.danplanet.com/mailman/listinfo/chirp_users">http://intrepid.danplanet.com/mailman/listinfo/chirp_users</a></p><p>as you did in order to initially subscribe, you click the &#34;unsubscribe or edit options&#34; button,</p><p>when asked, you give your email address and password and click the &#34;unsubscribe&#34; button.</p><p><br></p><p><br></p><blockquote type="cite">On 04 October 2019 at 15:27 John Higby &#60;KJ7HEL@hotmail.com&#62; wrote: <br> <br><div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: #000000;">How do I remove myself from ongoing e-mails for this group ?</div>&#160;<br><hr style="display: inline-block; width: 98%;"><div id="ox-4f3acc830f-divRplyFwdMsg" dir="ltr"><span style="font-size: 11pt; color: #000000; font-family: Calibri, sans-serif;"><strong>From:</strong> chirp_users-bounces@intrepid.danplanet.com &#60;chirp_users-bounces@intrepid.danplanet.com&#62; on behalf of David Boucha &#60;boucha@gmail.com&#62;<br> <strong>Sent:</strong> Friday, October 4, 2019 10:48 AM<br> <strong>To:</strong> Steven A. Falco &#60;stevenfalco@gmail.com&#62;<br> <strong>Cc:</strong> Discussion of CHIRP &#60;chirp_users@intrepid.danplanet.com&#62;<br> <strong>Subject:</strong> Re: [chirp_users] Trying chirpw with python3</span><div>&#160;</div></div><div><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="ox-4f3acc830f-x_gmail_quote"><div dir="ltr" class="ox-4f3acc830f-x_gmail_attr">On Fri, Oct 4, 2019 at 10:05 AM Steven A. Falco &#60; <a href="mailto:stevenfalco@gmail.com">stevenfalco@gmail.com</a>&#62; wrote: <br></div><blockquote>Here is the output of that command: <br> <br> saf$ pip3 install -U gtk <br> Collecting gtk <br> &#160; 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 &#34;import gtk&#34; 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 &#34;tips = gtk.Tooltips()&#34; to &#34;tips = gtk.Tooltip()&#34;, because they appear to have dropped the plural &#34;s&#34; from the class name. <br> <br> However, the new &#34;Tooltip&#34; class seems to be different from the previous &#34;Tooltips&#34; class, because now I get this exception: <br> <br> RROR: -- Exception: -- <br> ERROR: Traceback (most recent call last): <br> &#160; File &#34;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/editorset.py&#34;, line 361, in do_export <br> &#160; &#160; dst_rthread) <br> &#160; File &#34;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/editorset.py&#34;, line 252, in _do_import_locked <br> &#160; &#160; dialog = dlgclass(src_radio, dst_rthread.radio, self.parent_window) <br> &#160; File &#34;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/importdialog.py&#34;, line 628, in __init__ <br> &#160; &#160; self.build_ui() <br> &#160; File &#34;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/importdialog.py&#34;, line 506, in build_ui <br> &#160; &#160; self.vbox.pack_start(self.make_view(), 1, 1, 1) <br> &#160; File &#34;/home/sfalco/radio/baofeng/chirp.hg/chirp/ui/importdialog.py&#34;, line 333, in make_view <br> &#160; &#160; 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> &#160; &#160; &#160; &#160; Steve <br> <br> <br> On 10/4/19 11:51 AM, David Boucha wrote: <br> &#62; Try running the following command <br> &#62; <br> &#62; pip3 install -U gtk <br> &#62; <br> &#62; On Fri, Oct 4, 2019 at 8:45 AM Steven A. Falco &#60; <a href="mailto:stevenfalco@gmail.com" target="_blank" rel="noopener">stevenfalco@gmail.com</a> &#60;mailto: <a href="mailto:stevenfalco@gmail.com" target="_blank" rel="noopener">stevenfalco@gmail.com</a>&#62;&#62; wrote: <br> &#62; <br> &#62;&#160; &#160; &#160;The &#39;&#62;&#39; symbols got mangled in my previous email, so here is a corrected email. <br> &#62; <br> &#62;&#160; &#160; &#160;This sequence fails to find gtk: <br> &#62; <br> &#62;&#160; &#160; &#160;saf$ python3 <br> &#62;&#160; &#160; &#160;Python 3.7.4 (default, Jul&#160; 9 2019, 16:32:37) <br> &#62;&#160; &#160; &#160;[GCC 9.1.1 20190503 (Red Hat 9.1.1-1)] on linux <br> &#62;&#160; &#160; &#160;Type &#34;help&#34;, &#34;copyright&#34;, &#34;credits&#34; or &#34;license&#34; for more information. <br> &#62;&#160; &#160; &#160;&#160;&#62;&#62;&#62; import gtk <br> &#62;&#160; &#160; &#160;Traceback (most recent call last): <br> &#62;&#160; &#160; &#160;&#160; File &#34;&#60;stdin&#62;&#34;, line 1, in &#60;module&#62; <br> &#62;&#160; &#160; &#160;ModuleNotFoundError: No module named &#39;gtk&#39; <br> &#62; <br> &#62;&#160; &#160; &#160;But this sequence works: <br> &#62; <br> &#62;&#160; &#160; &#160;saf$ python3 <br> &#62;&#160; &#160; &#160;Python 3.7.4 (default, Jul&#160; 9 2019, 16:32:37) <br> &#62;&#160; &#160; &#160;[GCC 9.1.1 20190503 (Red Hat 9.1.1-1)] on linux <br> &#62;&#160; &#160; &#160;Type &#34;help&#34;, &#34;copyright&#34;, &#34;credits&#34; or &#34;license&#34; for more information. <br> &#62;&#160; &#160; &#160;&#160;&#62;&#62;&#62; import gi <br> &#62;&#160; &#160; &#160;&#160;&#62;&#62;&#62; gi.require_version(&#39;Gtk&#39;, &#39;3.0&#39;) <br> &#62;&#160; &#160; &#160;&#160;&#62;&#62;&#62; from gi.repository import Gtk <br> &#62;&#160; &#160; &#160;&#160;&#62;&#62;&#62; <br> &#62; <br> &#62;&#160; &#160; &#160;Is there something that I need to install?&#160; I&#39;m a complete python noob. <br> &#62; <br> &#62;&#160; &#160; &#160;&#160; &#160; &#160; &#160; Steve <br> &#62; <br> <br></blockquote></div></div></blockquote><p class="default-style"><br>&#160;</p><blockquote type="cite">_______________________________________________ <br>chirp_users mailing list <br>chirp_users@intrepid.danplanet.com <br>http://intrepid.danplanet.com/mailman/listinfo/chirp_users <br>This message was sent to Nigel Gunn, W8IFF at nigel@ngunn.net <br>To unsubscribe, send an email to chirp_users-unsubscribe@intrepid.danplanet.com</blockquote><p class="default-style"><br>&#160;</p><p><br></p><div class="io-ox-signature"><p>Nigel A. Gunn, 1865 El Camino Drive, Xenia, OH 45385-1115, USA. tel +1 937 825 5032<br>Amateur Radio G8IFF W8IFF and GMRS WRBV701, e-mail nigel@ngunn.net www http://www.ngunn.net <br><br></p></div></body></html>