Mercurial > p > roundup > code
changeset 2070:6807107fc8aa maint-0.6
CSV module install hints
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 03 Mar 2004 23:41:16 +0000 |
| parents | fd4763c6efae |
| children | 3555941caea0 |
| files | doc/installation.txt |
| diffstat | 1 files changed, 42 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/installation.txt Mon Mar 01 00:07:27 2004 +0000 +++ b/doc/installation.txt Wed Mar 03 23:41:16 2004 +0000 @@ -2,7 +2,7 @@ Installing Roundup ================== -:Version: $Revision: 1.55.2.5 $ +:Version: $Revision: 1.55.2.6 $ .. contents:: @@ -44,6 +44,38 @@ have to install the win32all package separately (get it from http://starship.python.net/crew/mhammond/win32/). +Non-Python2.3 users may need to `install the "CSV" module`_. + +Install the "CSV" module +------------------------ + +Note: CSV stands for Comma-Separated-Value. These files are used by all + manner of programs (eg. spreadsheets) to exchange data. + +The "CSV" module is required if you wish to import or export data in the +tracker, or if you wish to use the online generic class editing facility. + +If you're using a version of Python older than 2.3, then you will need to +install the "CSV" module from `Object Craft`_. Users of Python2.3 and later +don't need to. If you have a C compiler installed, then download the source +and follow their installation instructions (simply ``python setup.py +install``.) + +If you're on Windows and don't have a C compiler, then you'll need to +download the pre-compiled ``csv.pyd`` file and install it. To install, just +copy it to your Python installation in the ``lib\site-packages`` directory. +For Python 2.2, this would be:: + + c:\python22\lib\site-packages + +Once the CSV module is installed, you *must* restart roundup-server if it +is already running, or the new module won't be detected. + +If you're on some other platform and don't have a C compiler, you'll need +to ask for help on the roundup-users mailing list. + +.. _`Object Craft`: http://object-craft.com.au/ + Getting Roundup =============== @@ -426,6 +458,15 @@ may actually login and play with the roundup setup. +======= +Additional Language Codecs +-------------------------- + +If you intend to send messages to Roundup that use Chinese, Japanese or +Korean encodings the you'll need to obtain CJKCodecs from +http://cjkpython.berlios.de/ + + Maintenance ===========
