1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-08 11:33:49 -05:00

Updated Home (markdown)

David Dai
2024-01-09 12:23:26 -08:00
parent 6772e1c0c9
commit c88c04b5eb

10
Home.md

@@ -266,4 +266,14 @@ If you hit `No usable version of libssl was found`
sudo apt-get install libssl-dev
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb
```
In shell (e.g. `~/.bashrc`), add
```
# replace AISW_SDK_ROOT with the version printed from the installation step
export AISW_SDK_ROOT='/opt/qcom/aistack/qnn/2.18.0.240101'
export PATH="$AISW_SDK_ROOT/bin/x86_64-linux-clang:$PATH"
export LD_LIBRARY_PATH="$AISW_SDK_ROOT/lib/x86_64-linux-clang:${LD_LIBRARY_PATH}"
export PYTHONPATH="$AISW_SDK_ROOT/lib/python:$PYTHONPATH"
```