Fix wrong environment variable name

This commit is contained in:
Phillip J. Eby 2007-05-02 03:06:55 +00:00
parent 336525defa
commit bdb8407da1
1 changed files with 4 additions and 4 deletions

View File

@ -48,10 +48,10 @@ to request downloading and installation of ``SomePackage`` from PyPI.
This feature would *not* be a replacement for ``easy_install``;
instead, it would rely on ``SomePackage`` having pure-Python ``.egg``
files listed for download via the PyPI XML-RPC API, and the eggs would
be placed in the ``$PYTHONEGGS`` cache, where they would **not** be
importable by default. (And no scripts would be installed) However,
if the download egg contains installation bootstrap code, it will be
given a chance to run.
be placed in the ``$PYTHON_EGG_CACHE`` directory, where they would
**not** be importable by default. (And no scripts would be installed.)
However, if the download egg contains installation bootstrap code, it
will be given a chance to run.
These restrictions would allow the code to be extremely simple, yet
still powerful enough to support users downloading package management