Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(771)

Unified Diff: bootstrap/virtualenv/docs/installation.rst

Issue 1407953011: Re-land: Removed virtualenv from depot_tools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Re-added files that were present before virtualenv Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bootstrap/virtualenv/docs/index.rst ('k') | bootstrap/virtualenv/docs/make.bat » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bootstrap/virtualenv/docs/installation.rst
diff --git a/bootstrap/virtualenv/docs/installation.rst b/bootstrap/virtualenv/docs/installation.rst
deleted file mode 100644
index 3006d76179d361b7b4d5a5671349db669baecf0a..0000000000000000000000000000000000000000
--- a/bootstrap/virtualenv/docs/installation.rst
+++ /dev/null
@@ -1,58 +0,0 @@
-Installation
-============
-
-.. warning::
-
- We advise installing virtualenv-1.9 or greater. Prior to version 1.9, the
- pip included in virtualenv did not download from PyPI over SSL.
-
-.. warning::
-
- When using pip to install virtualenv, we advise using pip 1.3 or greater.
- Prior to version 1.3, pip did not download from PyPI over SSL.
-
-.. warning::
-
- We advise against using easy_install to install virtualenv when using
- setuptools < 0.9.7, because easy_install didn't download from PyPI over SSL
- and was broken in some subtle ways.
-
-To install globally with `pip` (if you have pip 1.3 or greater installed globally):
-
-::
-
- $ [sudo] pip install virtualenv
-
-Or to get the latest unreleased dev version:
-
-::
-
- $ [sudo] pip install https://github.com/pypa/virtualenv/tarball/develop
-
-
-To install version X.X globally from source:
-
-::
-
- $ curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-X.X.tar.gz
- $ tar xvfz virtualenv-X.X.tar.gz
- $ cd virtualenv-X.X
- $ [sudo] python setup.py install
-
-
-To *use* locally from source:
-
-::
-
- $ curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-X.X.tar.gz
- $ tar xvfz virtualenv-X.X.tar.gz
- $ cd virtualenv-X.X
- $ python virtualenv.py myVE
-
-.. note::
-
- The ``virtualenv.py`` script is *not* supported if run without the
- necessary pip/setuptools/virtualenv distributions available locally. All
- of the installation methods above include a ``virtualenv_support``
- directory alongside ``virtualenv.py`` which contains a complete set of
- pip and setuptools distributions, and so are fully supported.
« no previous file with comments | « bootstrap/virtualenv/docs/index.rst ('k') | bootstrap/virtualenv/docs/make.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698