We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab5bd2 commit 6702f52Copy full SHA for 6702f52
examples/arm/setup.sh
@@ -223,9 +223,12 @@ function setup_vela() {
223
# different command for conda vs venv
224
VNV=$(python3 -c "import sys; print('venv') if (sys.prefix != sys.base_prefix) else print('not_venv')")
225
if [ ${VNV} == "venv" ]; then
226
- pip3 install .
+ pip install .
227
else
228
- pip3 install . --user
+ # if not venv, we need the site-path where the vela
229
+ vela_path = $(python -c "import site; print(site.USER_BASE+'/bin')")
230
+ echo "export PATH=\${PATH}:${vela_path}" >> ${setup_path_script}
231
+ pip install . --user
232
fi
233
}
234
0 commit comments