aboutsummaryrefslogtreecommitdiff
path: root/python/pyarmnn/README.md
diff options
context:
space:
mode:
authorCathal Corbett <cathal.corbett@arm.com>2022-06-27 15:47:18 +0100
committerJames Conroy <james.conroy@arm.com>2022-06-28 11:06:03 +0000
commitd830579c5c197d58bcc977178ef3635207470d9b (patch)
tree0944a8383da59ff8f6309d496cf9f82e447df4bb /python/pyarmnn/README.md
parent4d2eec0436f75d526c2ec25623ad73c8d1ee9ac3 (diff)
downloadarmnn-d830579c5c197d58bcc977178ef3635207470d9b.tar.gz
IVGCVSW-6784 Fix PyArmNN docs for ONNX parser
* Solves GitHub issue: https://github.com/ARM-software/armnn/issues/611 * python/pyarmnn/README.md update Signed-off-by: Cathal Corbett <cathal.corbett@arm.com> Change-Id: I1cc7bfa536638db86ed4a83e41b14fce031bb59c
Diffstat (limited to 'python/pyarmnn/README.md')
-rw-r--r--python/pyarmnn/README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/pyarmnn/README.md b/python/pyarmnn/README.md
index 6d8b42d41a..3a7c2bc112 100644
--- a/python/pyarmnn/README.md
+++ b/python/pyarmnn/README.md
@@ -135,9 +135,11 @@ Alternatively, you can install from source. This is the more reliable way but re
While installing from sources, you have the freedom of choosing Arm NN libraries location. Set environment variables *ARMNN_LIB* and *ARMNN_INCLUDE* to point to Arm NN libraries and headers.
If you want to use system default locations, just set *ARMNN_INCLUDE* to point to Arm NN headers.
+Additionally, *LD_LIBRARY_PATH* may need to be updated to the Arm NN libraries location due to dependencies of the same shared library files being 'not found'.
```bash
$ export ARMNN_LIB=/path/to/libs
+$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/libs
$ export ARMNN_INCLUDE=/full/path/to/armnn/include:/full/path/to/armnn/profiling/common/include
```