advancedfind是一个很好的分析文本文件的插件。它可以在Linux上完美运行。
https://code.google.com/p/advanced-find/
但是,当放入gedit-win32中时,由于以下加载错误而无法工作:
Traceback (most recent call last):
File "C:\GeditPortable\App\gedit\lib\gedit-2\plugins\advancedfind\__init__.py", line 28, in <module>
from advancedfind import AdvancedFindWindowHelper
File "C:\GeditPortable\App\gedit\lib\gedit-2\plugins\advancedfind\advancedfind.py", line 27, in <module>
import gtk.glade
ImportError: DLL load failed: The specified module could not be found.
** (gedit.exe:7508): WARNING **: Error loading plugin 'Advanced Find/Replace'有没有人能帮上忙?
发布于 2014-12-04 08:46:47
这可能是没有正确安装/设置GTK for Windows的结果,也可能是python绑定的问题。您可以在http://sourceforge.net/projects/gladewin32/上获得Glade/GTK+ for Windows;如果这是一个绑定问题,请查看此处给出的答案:pygtk import gtk error
https://stackoverflow.com/questions/27284227
复制相似问题