1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

documentation tweaks

This commit is contained in:
Carl Meyer 2009-07-30 14:20:36 -04:00
parent 5877907794
commit 72e10393f7
2 changed files with 4 additions and 5 deletions

View file

@ -46,9 +46,8 @@ pip is meant to improve on easy_install. Some of the improvements:
* Maybe uninstallation will get added. (It might get added to easy_install,
but I think the chance for pip is higher.)
Also, pip will eventually be merged directly with pip, making it
simple to define fixed sets of requirements and reliably reproduce a set of
packages.
* Simple to define fixed sets of requirements and reliably reproduce a
set of packages.
pip is complementary with `virtualenv
<http://pypi.python.org/pypi/virtualenv>`_, and it is encouraged that you use

View file

@ -7,11 +7,11 @@ tip
* Added ability to override the default log file name (``pip-log.txt``)
with the environmental variable ``$PIP_LOG_FILE``.
* Made the freeze command to return the installed packages instead of
* Made the freeze command print installed packages to stdout instead of
writing them to a file. Use simple redirection (e.g.
``pip freeze > stable-req.txt``) to get a file with requirements.
* Fixed problem of freezing an editable packages from a Git repository.
* Fixed problem with freezing editable packages from a Git repository.
* Added support for base URLs using ``<base href='...'>`` when parsing
HTML pages.