Skip to content

Commit

Permalink
Adding trusted host param for pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
jeeva-duplo committed Aug 13, 2024
1 parent 7e0604c commit d1ea038
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions AgentAmazonLinux2/Setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ py3Install () {

# install virtualenv flask
virtualenv flask
yes | flask/bin/pip install flask
yes | flask/bin/pip install requests
yes | flask/bin/pip install python-pytun
yes | flask/bin/pip install --upgrade python-iptables
yes | flask/bin/pip install docker
yes | flask/bin/pip install boto3
yes | flask/bin/pip --trusted-host pypi.python.org install flask
yes | flask/bin/pip --trusted-host pypi.python.org install requests
yes | flask/bin/pip --trusted-host pypi.python.org install python-pytun
yes | flask/bin/pip --trusted-host pypi.python.org install --upgrade python-iptables
yes | flask/bin/pip --trusted-host pypi.python.org install docker
yes | flask/bin/pip --trusted-host pypi.python.org install boto3

#########
cd $DAEMON_DIR
Expand Down

0 comments on commit d1ea038

Please sign in to comment.