Edgewall Software

Changes between Version 24 and Version 25 of TracPlugins


Ignore:
Timestamp:
May 26, 2006, 5:35:37 PM (18 years ago)
Author:
ErikRose
Comment:

Noted a way around creating an egg cache directory when installing plugins.

Legend:

Unmodified
Added
Removed
Modified
  • TracPlugins

    v24 v25  
    4141
    4242If `easy_install` is not on your system see the Requirements section above to install it.  Windows users will need to add "C:\Python23\Scripts" to their `PATH` environment variable (see [http://peak.telecommunity.com/DevCenter/EasyInstall#windows-notes easy_install Windows notes] for more information).
     43
     44If Trac reports permission errors after installing a zipped egg and you would rather not bother providing a egg cache directory writable by the web server, you can get around it by simply unzipping the egg. Just pass `--always-unzip` to `easy_install`:
     45{{{
     46easy_install --always-unzip TracWebAdmin-0.1.1dev_r2765-py2.3.egg
     47}}}
     48You should end up with a directory having the same name as the zipped egg (complete with `.egg` extension) and containing its uncompressed contents.
    4349
    4450==== From source ====