tools/setup: install git-lfs from standard apt source

pull/22630/head
Adeeb Shihadeh 2021-10-19 22:37:08 -07:00
parent 317deeae84
commit 76a8751497
1 changed files with 1 additions and 6 deletions

View File

@ -14,6 +14,7 @@ sudo apt-get update && sudo apt-get install -y --no-install-recommends \
curl \
ffmpeg \
git \
git-lfs \
libavformat-dev libavcodec-dev libavdevice-dev libavutil-dev libswscale-dev libavresample-dev libavfilter-dev \
libarchive-dev \
libbz2-dev \
@ -59,12 +60,6 @@ sudo apt-get update && sudo apt-get install -y --no-install-recommends \
libqt5x11extras5-dev \
libreadline-dev
# install git lfs
if ! command -v "git-lfs" > /dev/null 2>&1; then
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
sudo apt-get install git-lfs
fi
# install pyenv
if ! command -v "pyenv" > /dev/null 2>&1; then
curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash