Update aws_software_setup.sh
Browse files- aws_software_setup.sh +11 -0
aws_software_setup.sh
CHANGED
@@ -25,6 +25,17 @@ else
|
|
25 |
echo "btop is already installed."
|
26 |
fi
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
# check and install miniconda3 if not exists
|
29 |
if [[ ! $(which python) == *miniconda* ]]
|
30 |
then
|
|
|
25 |
echo "btop is already installed."
|
26 |
fi
|
27 |
|
28 |
+
# Check if git-lfs is installed
|
29 |
+
if ! command -v git-lfs &> /dev/null
|
30 |
+
then
|
31 |
+
echo "Installing git-lfs..."
|
32 |
+
sudo apt-get update
|
33 |
+
sudo apt-get install git-lfs
|
34 |
+
else
|
35 |
+
echo "git-lfs is already installed."
|
36 |
+
fi
|
37 |
+
|
38 |
+
|
39 |
# check and install miniconda3 if not exists
|
40 |
if [[ ! $(which python) == *miniconda* ]]
|
41 |
then
|