From 17bb0083e550c3dae59a805f0ee8dde4e8813339 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Thu, 25 Oct 2018 10:24:21 +0100 Subject: [PATCH] doc/installation: Update installation instructions Update the instructions for installing WA from git not to use pip as this method does not process dependency_links correctly and results in an incompatible version of devlib being installed. --- doc/source/user_information/installation.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/source/user_information/installation.rst b/doc/source/user_information/installation.rst index bd11f773..20722665 100644 --- a/doc/source/user_information/installation.rst +++ b/doc/source/user_information/installation.rst @@ -196,7 +196,8 @@ Alternatively, you can also install the latest development version from GitHub (you will need git installed for this to work):: git clone git@github.com:ARM-software/workload-automation.git workload-automation - sudo -H pip install ./workload-automation + cd workload-automation + sudo -H python setup.py install