Edgewall Software

Changes between Version 375 and Version 376 of TracInstall


Ignore:
Timestamp:
Aug 24, 2014, 1:42:13 PM (10 years ago)
Author:
Ryan J Ollos
Comment:

Minor reword.

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v375 v376  
    262262}}}
    263263
    264 **Note:** If the version of your setuptools is in the range 5.4 through 5.6, the environment variable `PKG_RESOURCES_CACHE_ZIP_MANIFESTS` must be set in order to avoid significant performance degradation. The environment variable can be set system-wide, or just for the user that runs the `tracd` process. There are several ways to accomplish this. For system-wide settings a shell script with the `export` statement may be added to `/etc/profile.d`, or the `export` statement may be added to `~/.profile` to make it effective for a user session.
    265 {{{
     264**Note:** If the version of your setuptools is in the range 5.4 through 5.6, the environment variable `PKG_RESOURCES_CACHE_ZIP_MANIFESTS` must be set in order to avoid significant performance degradation. The environment variable can be set system-wide, or for just the user that runs the `tracd` process. There are several ways to accomplish this in addition to what is discussed here, and depending on the distribution of your OS.
     265
     266To be effective system-wide a shell script with the `export` statement may be added to `/etc/profile.d`. To be effective for a user session the `export` statement may be added to `~/.profile`.
     267{{{#!sh
    266268export PKG_RESOURCES_CACHE_ZIP_MANIFESTS=1
    267269}}}
    268270
    269271Alternatively, the variable can be set in the shell before executing `tracd`:
    270 {{{
     272{{{#!sh
    271273$ PKG_RESOURCES_CACHE_ZIP_MANIFESTS=1 tracd --port 8000 /path/to/myproject
    272274}}}