mirror of
https://github.com/gosticks/openpose.git
synced 2026-08-16 22:30:19 +00:00
16 lines
357 B
Bash
Executable File
16 lines
357 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Install dependencies for Ubuntu
|
|
echo "Running on ${TRAVIS_OS_NAME} OS."
|
|
|
|
BASEDIR=$(dirname $0)
|
|
source $BASEDIR/defaults.sh
|
|
|
|
if [[ $WITH_CUDA == true ]] ; then
|
|
sudo bash scripts/ubuntu/install_deps_and_cuda.sh
|
|
else
|
|
sudo bash scripts/ubuntu/install_deps.sh
|
|
fi
|
|
sudo apt-get -y install libatlas-base-dev
|
|
sudo apt-get -y install libopencv-dev
|