I encounter one problem today. My textext didn’t work on Inkscape 0.48, I get the error
1 | textext.py:55: DeprecationWarning: the md5 module is deprecated; use hashlib instead import os, sys, tempfile, traceback, glob, re, md5, copy |
2 | Traceback (most recent call last): File "textext.py", line 306, in <module> |
3 | raise RuntimeError("Neither pygtk nor Tkinter is available!") |
4 | RuntimeError: Neither pygtk nor Tkinter is available! |
The error is due to a module depreciated on the python version used on Inkscape, and that Textext uses. However, it was pretty easy to solve.
- First you need to download and the python packages that are missing, thanks to David Gleich whom packed everything together, avoiding us the trouble of download them and put the pieces together.
- Unzip them
C:/Program Files/Inkscape/python/Lib/site-packages
Then you need to update your textext files, thanks to Pascal Schulthess for the solution.
- Go to
C:/Program Files/Inkscape/share/extensions, and opentextext.pyfile - Now replace
54 | import inkex |
55 | import os, sys, tempfile, traceback, glob, re, md5, copy |
56 | from lxml import etree |
and replace it for
54 | import inkex |
55 | import os, sys, tempfile, traceback, glob, re, copy |
56 | import hashlib |
57 | from lxml import etree |
- And replace this
868def__init__(self, document):869PdfConverterBase.__init__(self, document)870self.hash=None871defconvert(self,*a,**kw):872# compute hash for generating unique ids for sub-elements873self.hash=md5.new('%s%s'%(a, kw)).hexdigest()[:8]874returnPdfConverterBase.convert(self,*a,**kw)875defpdf_to_svg(self):876exec_command(['pdf2svg',self.tmp('pdf'),self.tmp('svg'),'1']) -
for
868def__init__(self, document):869PdfConverterBase.__init__(self, document)870self.hash=None871USE_GTK=False872defconvert(self,*a,**kw):873# compute hash for generating unique ids for sub-elements874m=hashlib.md5()875m.update('%s%s'%(a, kw))876self.hash=m.hexdigest()[:8]877returnPdfConverterBase.convert(self,*a,**kw)878defpdf_to_svg(self):879exec_command(['pdf2svg',self.tmp('pdf'),self.tmp('svg'),'1'])
Restart Inkscape and the Tex Text works.
attention: you should pay attentions to the space or indent when you replace. or you will have a indent wrong in line871 when you run it.
more information you can visit:
https://bitbucket.org/pv/textext/issue/55/textext-using-inkscape048
but just using my this method of my passage is enough to solve the problem.
it works well!
本文提供了一种解决Inkscape 0.48上TextExt插件因Python模块过时导致的问题的方法。通过更新缺失的Python包及修改TextExt的源代码,可以成功使插件恢复正常运行。
814

被折叠的 条评论
为什么被折叠?



