内容目录
steps:
# install git-lfs first
sudo apt-get install -y git-lfs
# pull large files (some js, model, .so file)
git-lfs fetch --all
echo 'export APOLLO_HOME=$(pwd)' >> ~/.bashrc
source ~/.bashrc
# pull apollo docker first
./docker/scripts/dev_start.sh
# into apollo docker
./docker/scripts/dev_into.sh
# build apollo inside docker
# optional: you can also build CPU only mode apollo
bash apollo.sh build
# start dreamview
./scripts/bootstrap.sh
enjoy!
\