summaryrefslogtreecommitdiffstats
path: root/Doc/README.rst
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2017-11-27 22:07:32 (GMT)
committerGitHub <noreply@github.com>2017-11-27 22:07:32 (GMT)
commit122fc136b34e11906466851e77bb6959946467ee (patch)
tree052d637fb28a791abd42cead7626c7f4485a54dc /Doc/README.rst
parent9522a218f7dff95c490ff359cc60e8c2af35f5c8 (diff)
downloadcpython-122fc136b34e11906466851e77bb6959946467ee.zip
cpython-122fc136b34e11906466851e77bb6959946467ee.tar.gz
cpython-122fc136b34e11906466851e77bb6959946467ee.tar.bz2
Revert "bpo-30487: automatically create a venv and install Sphinx when running make (GH-4346)" (#4592)
Fix breakage documented in bpo-32149. This reverts commit d8d6b9122134f040cd5a4f15f40f6c9e3386db4d.
Diffstat (limited to 'Doc/README.rst')
-rw-r--r--Doc/README.rst39
1 files changed, 16 insertions, 23 deletions
diff --git a/Doc/README.rst b/Doc/README.rst
index c0a8d89..a29d1f3 100644
--- a/Doc/README.rst
+++ b/Doc/README.rst
@@ -21,16 +21,21 @@ tree but are maintained separately and are available from
* `Sphinx <https://pypi.org/project/Sphinx/>`_
* `blurb <https://pypi.org/project/blurb/>`_
-You could manually create a virtual environment and install them, but there is
-a ``Makefile`` already set up to do this for you, as long as you have a working
-Python 3 interpreter available.
+The easiest way to install these tools is to create a virtual environment and
+install the tools into there.
Using make
----------
-A Makefile has been prepared so that (on Unix), after you change into the
-``Doc/`` directory you can simply run ::
+To get started on UNIX, you can create a virtual environment with the command ::
+
+ make venv
+
+That will install all the tools necessary to build the documentation. Assuming
+the virtual environment was created in the ``env`` directory (the default;
+configurable with the VENVDIR variable), you can run the following command to
+build the HTML output files::
make html
@@ -39,17 +44,8 @@ look for instances of sphinxbuild and blurb installed on your process PATH
(configurable with the SPHINXBUILD and BLURB variables).
On Windows, we try to emulate the Makefile as closely as possible with a
-``make.bat`` file.
-
-To use a Python interpreter that's not called ``python3``, use the standard
-way to set Makefile variables, using e.g. ::
-
- make html PYTHON=python
-
-On Windows, set the PYTHON environment variable instead.
-
-To use a specific sphinx-build (something other than ``sphinx-build``), set
-the SPHINXBUILD variable.
+``make.bat`` file. If you need to specify the Python interpreter to use,
+set the PYTHON environment variable instead.
Available make targets are:
@@ -108,14 +104,11 @@ Available make targets are:
Without make
------------
-Install the Sphinx package and its dependencies from PyPI. In this situation,
-you'll have to create a virtual environment manually, and install Sphinx into
-it. Change into the ``Doc`` directory and run ::
+First, install the tool dependencies from PyPI.
+
+Then, from the ``Doc`` directory, run ::
- $ python3 -m venv venv
- $ source venv/bin/activate
- (venv) $ pip install Sphinx
- (venv) $ sphinx-build -b<builder> . build/<builder>
+ sphinx-build -b<builder> . build/<builder>
where ``<builder>`` is one of html, text, latex, or htmlhelp (for explanations
see the make targets above).