You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
mkvirtualenv source
|
|
|
|
workon source
|
|
|
|
pip install -r tools/python/requirements.txt
|
|
|
|
for d in $(find . -type d -path "*/src/python"); do
|
|
d="$(realpath "${d}")"
|
|
echo "Adding subproject ${d}"
|
|
add2virtualenv "${d}"
|
|
done
|