aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-08-17 14:45:02 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-08-17 14:45:02 -0400
commite282a1f42c47484c4fa52b8321c4ee367a150f2d (patch)
tree0fbf973dbf3096399cd6a7cdc87e8055cdfe6f7f /docs
parentd1d7dc6411b95ca5908c9628b4d74079b774f458 (diff)
downloadexternal_python_setuptools-e282a1f42c47484c4fa52b8321c4ee367a150f2d.tar.gz
external_python_setuptools-e282a1f42c47484c4fa52b8321c4ee367a150f2d.tar.bz2
external_python_setuptools-e282a1f42c47484c4fa52b8321c4ee367a150f2d.zip
Removed the --delete-conflicting and --ignore-conflicts-at-my-risk options, which have long been deprecated and indicated that they're not used.1.0
Diffstat (limited to 'docs')
-rw-r--r--docs/easy_install.txt29
1 files changed, 3 insertions, 26 deletions
diff --git a/docs/easy_install.txt b/docs/easy_install.txt
index 26001c75..42a5323d 100644
--- a/docs/easy_install.txt
+++ b/docs/easy_install.txt
@@ -572,14 +572,12 @@ install``, becuase the ``distutils`` just install new packages on top of old
ones, possibly combining two unrelated packages or leaving behind modules that
have been deleted in the newer version of the package.)
-By default, EasyInstall will stop the installation if it detects a conflict
+EasyInstall will stop the installation if it detects a conflict
between an existing, "unmanaged" package, and a module or package in any of
the distributions you're installing. It will display a list of all of the
existing files and directories that would need to be deleted for the new
-package to be able to function correctly. You can then either delete these
-conflicting files and directories yourself and re-run EasyInstall, or you can
-just use the ``--delete-conflicting`` or ``--ignore-conflicts-at-my-risk``
-options, as described under `Command-Line Options`_, below.
+package to be able to function correctly. To proceed, you must manually
+delete these conflicting files and directories and re-run EasyInstall.
Of course, once you've replaced all of your existing "unmanaged" packages with
versions managed by EasyInstall, you won't have any more conflicts to worry
@@ -823,27 +821,6 @@ Command-Line Options
Added in Distribute 0.6.11 and Setuptools 0.7.
-``--delete-conflicting, -D`` (Removed in 0.6a11)
- (As of 0.6a11, this option is no longer necessary; please do not use it!)
-
- If you are replacing a package that was previously installed *without*
- using EasyInstall, the old version may end up on ``sys.path`` before the
- version being installed with EasyInstall. EasyInstall will normally abort
- the installation of a package if it detects such a conflict, and ask you to
- manually remove the conflicting files or directories. If you specify this
- option, however, EasyInstall will attempt to delete the files or
- directories itself, and then proceed with the installation.
-
-``--ignore-conflicts-at-my-risk`` (Removed in 0.6a11)
- (As of 0.6a11, this option is no longer necessary; please do not use it!)
-
- Ignore conflicting packages and proceed with installation anyway, even
- though it means the package probably won't work properly. If the
- conflicting package is in a directory you can't write to, this may be your
- only option, but you will need to take more invasive measures to get the
- installed package to work, like manually adding it to ``PYTHONPATH`` or to
- ``sys.path`` at runtime.
-
``--index-url=URL, -i URL`` (New in 0.4a1; default changed in 0.6c7)
Specifies the base URL of the Python Package Index. The default is
https://pypi.python.org/simple if not specified. When a package is requested