summaryrefslogtreecommitdiffstats
path: root/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt18
1 files changed, 12 insertions, 6 deletions
diff --git a/README.txt b/README.txt
index ce30505..03f57ed 100644
--- a/README.txt
+++ b/README.txt
@@ -101,14 +101,20 @@ command.
Please add your host as you set it up.
-The best environment to use is `virtualenv`. It can create a specific python
-environment using `pip`.
+The best results are produced with Python3 and a virtual environment`. It can
+create a specific python environment using `pip`.
-Virtualenv
-~~~~~~~~~~
+Virtual Environment
+~~~~~~~~~~~~~~~~~~~
+
+Create a directory to house the virtual environment, create the envrionment
+and the activate it. This example assumes Python3 and the `venv` module:
+
+ $ mkdir sphinx
+ $ python3 -m venv sphinx
+ $ . ./sphinx/bin/activate
-Create a directory to house the virtualenv, create the envrionment and the
-activate it:
+Alternatively you can use the `virtualenv` command:
$ mkdir sphinx
$ virtualenv sphinx