aboutsummaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorMarc Bonnici <marc.bonnici@arm.com>2018-10-25 10:24:21 +0100
committersetrofim <setrofim@gmail.com>2018-10-25 10:32:28 +0100
commit17bb0083e550c3dae59a805f0ee8dde4e8813339 (patch)
tree24ce23854f5eb0972d4ae78cbca8a5764192e540 /doc/source
parentc4ad7467e019e8c1bb7f073f5ce8ea9a4044da5f (diff)
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.
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/user_information/installation.rst3
1 files changed, 2 insertions, 1 deletions
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