From 88c184fb170e044d5c9dbe4b2c02bbcc7e90375d Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Tue, 13 Sep 2022 16:56:49 +0530 Subject: [PATCH] Fix installation docs * Updated formatting in make dist command documentation * Removed virtualenvwrapper since it is complicated than virtualenv Signed-off-by: Abhijeet Kasurde --- docs/install.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index cbc2ab4d8..4441e5ca4 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -47,10 +47,14 @@ Check out the source code from `github `_ +Create a virtual environment using Python and activate it:: + + $ virtualenv env + $ source env/bin/activate + Then install:: - $ pip install virtualenvwrapper - $ mkvirtualenv ansible-runner + $ cd ansible-runner $ pip install -e . .. _builddist: @@ -58,7 +62,7 @@ Then install:: Build the distribution ---------------------- -To produce both wheel and sdist: +To produce both wheel and sdist:: make dist