From 11d76656dea0d496b8aad2468713e058598efbb6 Mon Sep 17 00:00:00 2001 From: Haroon Sheikh Date: Sat, 7 Oct 2017 15:50:14 +0100 Subject: [PATCH] Fix #538 -- Remove pyvenv from docs (#633) --- doc/development/setup.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/development/setup.rst b/doc/development/setup.rst index 13883387f..6d1e69bf3 100644 --- a/doc/development/setup.rst +++ b/doc/development/setup.rst @@ -20,7 +20,6 @@ Your should install the following on your system: * Python 3.4 or newer * ``pip`` for Python 3 (Debian package: ``python3-pip``) -* ``pyvenv`` for Python 3 (Debian package: ``python3-venv``) * ``python-dev`` for Python 3 (Debian package: ``python3-dev``) * ``libffi`` (Debian package: ``libffi-dev``) * ``libssl`` (Debian package: ``libssl-dev``) @@ -37,7 +36,7 @@ Please execute ``python -V`` or ``python3 -V`` to make sure you have Python 3.4 execute ``pip3 -V`` to check. Then use Python's internal tools to create a virtual environment and activate it for your current session:: - pyvenv env + python3 -m venv env source env/bin/activate You should now see a ``(env)`` prepended to your shell prompt. You have to do this