Skip to content

Commit cf0496c

Browse files
committed
remove broken python dep installation
Signed-off-by: Gyuho Lee <[email protected]>
1 parent dbf21eb commit cf0496c

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

avalanche-ops/src/aws/cfn-templates/asg_ubuntu.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -568,8 +568,7 @@ Resources:
568568
while [ 1 ]; do
569569
sudo apt-get update -yqq && sudo apt-get upgrade -yqq \
570570
&& sudo apt-get install -yq \
571-
curl wget unzip zip gzip tar libssl-dev \
572-
python3-pip python-setuptools zsh
571+
curl wget unzip zip gzip tar libssl-dev zsh
573572
if [ $? = 0 ]; then break; fi; # check return value, break if successful (0)
574573
sleep 2s;
575574
done;

avalanche-ops/src/aws/cfn-templates/asg_ubuntu_dev_machine.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ Resources:
413413
jq curl wget \
414414
unzip zip gzip tar \
415415
libssl-dev \
416-
python3-pip python-setuptools \
416+
python3-pip \
417417
pkg-config \
418418
protobuf-compiler
419419
if [ $? = 0 ]; then break; fi; # check return value, break if successful (0)

blizzardup-aws/cfn-templates/asg_ubuntu.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,7 @@ Resources:
345345
while [ 1 ]; do
346346
sudo apt-get update -yqq && sudo apt-get upgrade -yqq \
347347
&& sudo apt-get install -yq \
348-
curl wget unzip zip gzip tar libssl-dev \
349-
python3-pip python-setuptools zsh
348+
curl wget unzip zip gzip tar libssl-dev zsh
350349
if [ $? = 0 ]; then break; fi; # check return value, break if successful (0)
351350
sleep 2s;
352351
done;

0 commit comments

Comments
 (0)