diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2010-05-15 07:33:37 -1000 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2010-05-15 07:33:37 -1000 |
| commit | 1fc291ffa0bdddb8869224a760f3af7ef5a45cf5 (patch) | |
| tree | ca6c6b1e70f74b169bd6167d5c2aa81fbddb693d /docs | |
| parent | 4353f3f6eaabc04859bcbd592c58df985bd2ad3b (diff) | |
| parent | de6e3bcc3c77bff17a6609b31bc1b6a9212bbd88 (diff) | |
| download | python-setuptools-git-1fc291ffa0bdddb8869224a760f3af7ef5a45cf5.tar.gz | |
Merged Fix for #151
--HG--
branch : distribute
extra : rebase_source : 7f7f9c64a26c6110096387b9862e06455c49f2ec
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/conf.py | 2 | ||||
| -rw-r--r-- | docs/easy_install.txt | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index 3991c73c..53614ed5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,7 +48,7 @@ copyright = u'2009, The fellowship of the packaging' # built documents. # # The short X.Y version. -version = '0.6.11' +version = '0.6.13' # The full version, including alpha/beta/rc tags. release = '0.6.4' diff --git a/docs/easy_install.txt b/docs/easy_install.txt index 3e39b811..ab008a1d 100644 --- a/docs/easy_install.txt +++ b/docs/easy_install.txt @@ -144,6 +144,10 @@ and Viewing Source Packages`_ below for more info.):: easy_install --editable --build-directory ~/projects SQLObject +**Example 7**. (New in 0.6.11) Install a distribution within your home dir:: + + easy_install --user SQLAlchemy + Easy Install accepts URLs, filenames, PyPI package names (i.e., ``distutils`` "distribution" names), and package+version specifiers. In each case, it will attempt to locate the latest available version that meets your criteria. @@ -716,6 +720,10 @@ Command-Line Options versions of a package, but do not want to reset the version that will be run by scripts that are already installed. +``--user`` (New in 0.6.11) + Use the the user-site-packages as specified in :pep:`370` + instead of the global site-packages. + ``--always-copy, -a`` (New in 0.5a4) Copy all needed distributions to the installation directory, even if they are already present in a directory on sys.path. In older versions of @@ -768,6 +776,11 @@ Command-Line Options package not being available locally, or due to the use of the ``--update`` or ``-U`` option. +``--no-find-links`` Blocks the addition of any link. (New in Distribute 0.6.11) + This is useful if you want to avoid adding links defined in a project + easy_install is installing (wether it's a requested project or a + dependency.). When used, ``--find-links`` is ignored. + ``--delete-conflicting, -D`` (Removed in 0.6a11) (As of 0.6a11, this option is no longer necessary; please do not use it!) |
