- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
使用下面的代码,生成一个 TclError。
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
plt.plot([1,2,3,4], [1,4,9,16], 'ro')
plt.axis([0, 6, 0, 20])
plt.show()
当我在终端中执行我的脚本时,我得到以下信息:
/Users/<username>/anaconda/lib/python2.7/site-packages/matplotlib/__init__.py:1035: UserWarning: Duplicate key in file "/Users/<username>/.matplotlib/matplotlibrc", line #2
(fname, cnt))
objc[44479]: Class TKApplication is implemented in both /Users/<username>/anaconda/lib/libtk8.5.dylib and /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk. One of the two will be used. Which one is undefined.
objc[44479]: Class TKMenu is implemented in both /Users/<username>/anaconda/lib/libtk8.5.dylib and /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk. One of the two will be used. Which one is undefined.
objc[44479]: Class TKContentView is implemented in both /Users/<username>/anaconda/lib/libtk8.5.dylib and /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk. One of the two will be used. Which one is undefined.
objc[44479]: Class TKWindow is implemented in both /Users/<username>/anaconda/lib/libtk8.5.dylib and /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk. One of the two will be used. Which one is undefined.
2016-02-01 20:45:40.991 python[44479:21064918] setCanCycle: is deprecated. Please use setCollectionBehavior instead
2016-02-01 20:45:41.000 python[44479:21064918] setCanCycle: is deprecated. Please use setCollectionBehavior instead
Exception in Tkinter callback
Traceback (most recent call last):
File "/Users/<username>/anaconda/lib/python2.7/lib-tk/Tkinter.py", line 1536, in __call__
return self.func(*args)
File "/Users/<username>/anaconda/lib/python2.7/site-packages/matplotlib/backends/backend_tkagg.py", line 283, in resize
self.show()
File "/Users/<username>/anaconda/lib/python2.7/site-packages/matplotlib/backends/backend_tkagg.py", line 355, in draw
tkagg.blit(self._tkphoto, self.renderer._renderer, colormode=2)
File "/Users/<username>/anaconda/lib/python2.7/site-packages/matplotlib/backends/tkagg.py", line 30, in blit
id(data), colormode, id(bbox_array))
TclError
是什么导致了这个错误?我尝试将 backend: TkAgg
添加到我的 matplotlibrc
文件中,但无济于事。
请指教
最佳答案
想通了:
而不是使用:
matplotlib.use('TkAgg')
使用:
matplotlib.use('Qt4Agg')
或任何其他后端
关于python - TclError matplotlib 1.5.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35145314/
我带着一个新的错误回到这里,我不能解决...这是一个奇怪的错误,idk,我把图像在同一目录的程序,在目录中指定的代码.啊,我不知道,但这是所有的代码:。我希望这对你来说足够了..。我很沮丧,我把图像放
每当我尝试使用 matplotlib (例如 this example code )绘制任何内容时,我都会收到相同的错误: jfm@ubuntu$ python test_for_matp
我正在尝试为闹钟应用程序创建一个下拉菜单,以便在闹钟激活时播放一些旧的角色扮演游戏声音。我不断收到此错误,但不知道如何修复它: self.tk.call(_flatten((self._w, cmd)
我有以下代码: from Tkinter import * from urllib import urlretrieve import webbrowser import ttk def get_la
第一公里的出租车费用为 8 卢比,其余一公里为 5 卢比。 从这些信息中得出一个等式: x = 10 (x is the distance travelled) y = (10*5)+3 (y is
尝试在 Ubuntu 14.04 上运行这段小代码 import matplotlib matplotlib.use('TkAgg') import pylab as PL import random
这个问题类似于this other question . 当我在 Mac OS X 上运行以下代码时(它在 Windows 上运行良好): import Tix root = Tix.Tk() 我收到
我知道这个问题已经被问过好几次了,但我还是想不出我的问题的答案。我不断收到同样的错误,但不知道如何解决。 这是我的代码: from Tkinter import * from PIL import I
我已经使用 python turtle 编写了一个小游戏,似乎每当我手动关闭 turtle 窗口时它都会给我一个错误,但如果游戏完成运行然后我关闭它就可以了。我认为它与代码的 ontimer 部分有关
前言:我目前已经尝试了大部分事情,并且在 stackoverflow 上很少有人提出关于这个问题的问题,而且我似乎无法理解它,所以我需要一些帮助 应用程序:该程序的目的是为椭圆形和图片制作动画,椭圆形
更新:这只是创建 btComputePayment 时的一个错字。 已解决 我正在使用“Python 编程简介”(Pearson 2013)一书学习 Python。 目前我正在做一个练习,我必须在 T
一位 friend 发给我一些 Tkinter/Tix 代码,但它是针对 Python 2 的: from Tkinter import * import Tix import ScrolledTex
使用下面的代码,生成一个 TclError。 import matplotlib matplotlib.use('TkAgg') import matplotlib.pyplot as plt plt
当运行以下代码并单击 tkinter 按钮时;它产生以下错误: Exception in Tkinter callback Traceback (most recent call last): F
我想在菜单栏上显示一个图标,所以使用这个 information ,我这样编码: img = Image.open("help.png") menubar.add_cascade(label="Hel
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
Ubuntu 16.04 ,安装了 nvidia-docker,一个正在运行的 tensorflow 容器, python 2.7 我想在容器内运行一个简单的 python 代码。如下图 from t
我正在尝试学习如何使用 tkinter 制作 GUI conde 是相当基本的,但我收到以下错误: Exception has occurred: TclError no display name a
我正在使用 Tkinter,并且在尝试运行代码时不断收到错误消息,有人可以帮忙吗? from tkinter import * from tkinter.messagebox import showi
我正在尝试构建一个实时项目,其中状态每秒更新一次,因此某些部分代码会不断重复。当我想更改必须更新的信息时,我只需单击新按钮,它会为我提供第一个窗口,我可以在其中更新新信息。但这样做会给我以下错误。请帮
我是一名优秀的程序员,十分优秀!