Changes between Version 11 and Version 12 of TicketImportPlugin


Ignore:
Timestamp:
Jan 5, 2009, 4:25:08 PM (15 years ago)
Author:
François Granade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TicketImportPlugin

    v11 v12  
    1515== Installation ==
    1616
     17=== Machine-wide installation ===
    1718For a machine-wide installation, run as root on your machine:
    1819  * `easy_install http://trac-hacks.org/svn/ticketimportplugin/0.10` for Trac 0.10, or
    1920  * `easy_install http://trac-hacks.org/svn/ticketimportplugin/0.11` for Trac 0.11, or
    2021
    21 
     22=== Trac instance installation ===
    2223For an installation for only one Trac instance (on Trac 0.10, requires the Admin plugin):
    2324  * Download
     
    2728     * [http://trac-hacks.org/attachment/wiki/TicketImportPlugin/TicketImport-0.6-py2.4.egg?format=raw TicketImport-0.7-py2.5.egg] for Python 2.5 for Trac 0.11
    2829  * Install using the Admin UI in Trac.
     30
     31=== xlrd installation (optional) ===
     32
     33To be able to import Excel files, xlrd must be installed. xlrd is a Python library, not a Trac plugin. Take the latest binary from http://pypi.python.org/pypi/xlrd. On windows, run the installer; on other platforms, just unzip the .zip, and copy the "xlrd" folder that it contains, into the "site-packages" folder of the Python lib, for example:
     34
     35{{{
     36mkdir tmp
     37cd tmp
     38curl http://pypi.python.org/packages/source/x/xlrd/xlrd-0.6.1.zip > xlrd-0.6.1.zip
     39unzip xlrd-0.6.1.zip
     40sudo cp -r xlrd-0.6.1/xlrd /usr/lib/python2.4/site-packages/
     41}}}
     42
     43No configuration is needed. To verify that it's correctly installed, run {{{python -c 'import xlrd'}}} from the command line: it should not cause an error.
    2944
    3045== Bugs/Feature Requests ==