
On 25/10/10 18:43, n3storm wrote:
the file : export-pdf-cmyk.py is importing the following python modules:
import inkex, simplestyle, tempfile, os, re, subprocess
I think we should focus on inkex and simplestyle, because the other are installed by default.
'inkex.py' and 'simplestyle.py' come with Inkscape - they are essential parts of the python modules for extensions that are installed with Inkscape: http://wiki.inkscape.org/wiki/index.php/Python_modules_for_extensions
Extension scripts installed in '~/.config/inkscape/extensions' or '/usr/share/inkscape/extensions' can import these modules without adding paths to 'sys.path' (though if you read the script, the shared extension directory is added anyway) or installing additional packages.
hth, ~suv