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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « bootstrap/virtualenv/docs/index.rst ('k') | bootstrap/virtualenv/docs/make.bat » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Installation
2 ============
3
4 .. warning::
5
6 We advise installing virtualenv-1.9 or greater. Prior to version 1.9, the
7 pip included in virtualenv did not download from PyPI over SSL.
8
9 .. warning::
10
11 When using pip to install virtualenv, we advise using pip 1.3 or greater.
12 Prior to version 1.3, pip did not download from PyPI over SSL.
13
14 .. warning::
15
16 We advise against using easy_install to install virtualenv when using
17 setuptools < 0.9.7, because easy_install didn't download from PyPI over SSL
18 and was broken in some subtle ways.
19
20 To install globally with `pip` (if you have pip 1.3 or greater installed globall y):
21
22 ::
23
24 $ [sudo] pip install virtualenv
25
26 Or to get the latest unreleased dev version:
27
28 ::
29
30 $ [sudo] pip install https://github.com/pypa/virtualenv/tarball/develop
31
32
33 To install version X.X globally from source:
34
35 ::
36
37 $ curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-X.X.t ar.gz
38 $ tar xvfz virtualenv-X.X.tar.gz
39 $ cd virtualenv-X.X
40 $ [sudo] python setup.py install
41
42
43 To *use* locally from source:
44
45 ::
46
47 $ curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-X.X.t ar.gz
48 $ tar xvfz virtualenv-X.X.tar.gz
49 $ cd virtualenv-X.X
50 $ python virtualenv.py myVE
51
52 .. note::
53
54 The ``virtualenv.py`` script is *not* supported if run without the
55 necessary pip/setuptools/virtualenv distributions available locally. All
56 of the installation methods above include a ``virtualenv_support``
57 directory alongside ``virtualenv.py`` which contains a complete set of
58 pip and setuptools distributions, and so are fully supported.
OLDNEW
« 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