<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic After running &amp;quot;conda update - in Intel® Distribution for Python*</title>
    <link>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158613#M1190</link>
    <description>&lt;P&gt;After running "conda update --all" tkinter works fine now. I presume it was the update of one of the "intelpython", "tcl" or "tk" packages in the past few days/weeks. Thanks for fixing it.&lt;/P&gt;</description>
    <pubDate>Fri, 23 Mar 2018 18:49:21 GMT</pubDate>
    <dc:creator>Darren_Bane</dc:creator>
    <dc:date>2018-03-23T18:49:21Z</dc:date>
    <item>
      <title>RunTimeError tkinter 8.6 in osx 10.13</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158608#M1185</link>
      <description>&lt;P&gt;osx 10.13.1&lt;/P&gt;

&lt;P&gt;Reproducible example (Using&amp;nbsp;Python 3.6.3 |Intel Corporation| (default, Oct 16 2017, 10:30:26))&lt;/P&gt;

&lt;PRE class="brush:python;"&gt;import tkinter
tkinter._test()&lt;/PRE&gt;

&lt;P&gt;Result&lt;/P&gt;

&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;
	&amp;nbsp; File "&amp;lt;stdin&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython3/lib/python3.6/tkinter/__init__.py", line 3982, in _test&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; root = Tk()&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython3/lib/python3.6/tkinter/__init__.py", line 2019, in __init__&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; self._loadtk()&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython3/lib/python3.6/tkinter/__init__.py", line 2034, in _loadtk&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; % (_tkinter.TK_VERSION, tk_version))&lt;BR /&gt;
	RuntimeError: tk.h version (8.6) doesn't match libtk.a version (8.5)&lt;/P&gt;

&lt;P&gt;I tried installing tk 8.6 but the error persists. I have the following folders&lt;/P&gt;

&lt;P&gt;/System/Library/Frameworks/Tk.framework/Versions/8.5&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;/Library/Frameworks/Tk.framework/Versions/8.6&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;This was causing matplotlib to not function properly, my temporary solution was to add the following line&lt;/P&gt;

&lt;PRE class="brush:python;"&gt;matplotlib.use('Qt5Agg')&lt;/PRE&gt;

&lt;P&gt;Other Python distributions in my computer work ok with Tk 8.5&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 11:59:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158608#M1185</guid>
      <dc:creator>latorre__fabian</dc:creator>
      <dc:date>2017-11-17T11:59:23Z</dc:date>
    </item>
    <item>
      <title>Hi Fabian,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158609#M1186</link>
      <description>&lt;P&gt;Hi Fabian,&lt;/P&gt;

&lt;P&gt;Intel Python includes its own copy of Tk in /opt/intel/intelpython3/lib, so there must be something in your environment that's preferring the system Tk. Can you try unsetting environment variables like DYLD_LIBRARY_PATH? Also you can run `env | grep Tk` to see if anything in your environment is pointing to the system Tk.&amp;nbsp; To debug the library loading, you can set DYLD_PRINT_LIBRARIES. As a last resort, `export DYLD_LIBRARY_PATH=/opt/intel/intelpython3/lib` would likely work around the error.&lt;/P&gt;

&lt;P&gt;Please let me know what you discover.&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 15:59:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158609#M1186</guid>
      <dc:creator>Christophe_H_Intel2</dc:creator>
      <dc:date>2017-11-17T15:59:20Z</dc:date>
    </item>
    <item>
      <title>Hi CHris thanks for the help</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158610#M1187</link>
      <description>&lt;P&gt;Hi CHris thanks for the help&lt;/P&gt;

&lt;P&gt;1. Unsetting&amp;nbsp;&lt;SPAN style="font-size: 12px;"&gt;DYLD_LIBRARY_PATH: Same error&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;2. env | grep Tk: No results&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;3.&amp;nbsp;set DYLD_PRINT_LIBRARIES: Same error&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;4.&amp;nbsp;export DYLD_LIBRARY_PATH=/opt/intel/intelpython3/lib: Different error shows&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;
	&amp;nbsp; File "&amp;lt;stdin&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; File "/opt/intel/intelpython3/lib/python3.6/tkinter/__init__.py", line 36, in &amp;lt;module&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; import _tkinter # If this fails your Python may not be configured for Tk&lt;BR /&gt;
	ImportError: dlopen(/opt/intel/intelpython3/lib/python3.6/lib-dynload/_tkinter.cpython-36m-darwin.so, 2): Symbol not found: __cg_png_create_info_struct&lt;BR /&gt;
	&amp;nbsp; Referenced from: /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO&lt;BR /&gt;
	&amp;nbsp; Expected in: /opt/intel/intelpython3/lib/libPng.dylib&lt;BR /&gt;
	&amp;nbsp;in /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO&lt;/P&gt;

&lt;P&gt;Note I have the file /opt/intel/intelpython3/lib/libpng.dylib (Without the capital P as in the error)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 16:37:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158610#M1187</guid>
      <dc:creator>latorre__fabian</dc:creator>
      <dc:date>2017-11-17T16:37:57Z</dc:date>
    </item>
    <item>
      <title>Just a note to say that I can</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158611#M1188</link>
      <description>&lt;P&gt;Just a note to say that I can reproduce this too. Exact same behaviour on macOS 10.13.3 &amp;amp; Intel Python 2018 Update 1. I ran "conda update --all" but it didn't help. I also tried creating symlinks from wish and tclsh to wish8.6 and tclsh8.6 respectively in the bin directory, but that didn't help either. And running&lt;/P&gt;

&lt;PRE class="brush:python;"&gt;import tkinter
tkinter.Tcl().eval('info patchlevel')&lt;/PRE&gt;

&lt;P&gt;outputs&lt;/P&gt;

&lt;PRE class="brush:python;"&gt;'8.5.9'&lt;/PRE&gt;

&lt;P&gt;which is the Apple version.&lt;/P&gt;

&lt;P&gt;Are there any plans to fix it?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Mar 2018 15:14:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158611#M1188</guid>
      <dc:creator>Darren_Bane</dc:creator>
      <dc:date>2018-03-02T15:14:48Z</dc:date>
    </item>
    <item>
      <title>Hi, all.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158612#M1189</link>
      <description>Hi, all.

I also had a same problem on macOS 10.13.3.

Python 3.6.3 |Anaconda custom (64-bit)| (default, Oct 16 2017, 10:30:26)
[GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Intel(R) Distribution for Python is brought to you by Intel Corporation.
Please check out: https://software.intel.com/en-us/python-distribution
&amp;gt;&amp;gt;&amp;gt; import tkinter
&amp;gt;&amp;gt;&amp;gt; tkinter._test()
Traceback (most recent call last):
  File "&lt;STDIN&gt;", line 1, in &lt;MODULE&gt;
  File "/Users/USERNAME/.pyenv/versions/anaconda3-4.3.1/lib/python3.6/tkinter/__init__.py", line 3982, in _test
    root = Tk()
  File "/Users/USERNAME/.pyenv/versions/anaconda3-4.3.1/lib/python3.6/tkinter/__init__.py", line 2019, in __init__
    self._loadtk()
  File "/Users/USERNAME/.pyenv/versions/anaconda3-4.3.1/lib/python3.6/tkinter/__init__.py", line 2034, in _loadtk
    % (_tkinter.TK_VERSION, tk_version))
RuntimeError: tk.h version (8.6) doesn't match libtk.a version (8.5)

I hope if we could find good solution.&lt;/MODULE&gt;&lt;/STDIN&gt;</description>
      <pubDate>Wed, 14 Mar 2018 07:37:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158612#M1189</guid>
      <dc:creator>Mshira</dc:creator>
      <dc:date>2018-03-14T07:37:05Z</dc:date>
    </item>
    <item>
      <title>After running "conda update -</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158613#M1190</link>
      <description>&lt;P&gt;After running "conda update --all" tkinter works fine now. I presume it was the update of one of the "intelpython", "tcl" or "tk" packages in the past few days/weeks. Thanks for fixing it.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2018 18:49:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/RunTimeError-tkinter-8-6-in-osx-10-13/m-p/1158613#M1190</guid>
      <dc:creator>Darren_Bane</dc:creator>
      <dc:date>2018-03-23T18:49:21Z</dc:date>
    </item>
  </channel>
</rss>

