On Thursday, June 25, 2015 at 1:02:50 PM UTC-7, whartlists wrote: > > Installed xlrd and xlwt, created the .egg file from the current > ExportImport plugin and get the following error: > > 721 Trac[loader] DEBUG: Loading importexportxls from > /var/www/html/svbtrac/plugins/ImportExportXLS-0.1.8-py2.4.egg > 722 Trac[loader] ERROR: Skipping "importexportxls = importexportxls": > (can't import "ImportError: No module named xlwt") > > RHEL 5.11 w/python 2.4 so I had to use xlrd v .8.x and xlwt v. 7.x. > > Thanks in advance. >
Please try the following: open a Python interpreter and type "import xlwt". If that does not succeed,then the xlwt package is not found on your Python path, so it's probably not correctly installed. I installed the plugin in Trac 1.0 with Python 2.7 and it seems to work correctly. If all else fails, you could try the similar plugin, https://trac-hacks.org/wiki/TicketImportPlugin - Ryan -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/trac-users. For more options, visit https://groups.google.com/d/optout.
