Created
January 18, 2023 14:58
-
-
Save Voronenko/580dddefea5c0da77ded48cc48c7ea7b to your computer and use it in GitHub Desktop.
dummy snippet to dirty get aws cli v1 in python container
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -O https://bootstrap.pypa.io/get-pip.py | |
python3 get-pip.py --user | |
echo "export PATH=~/.local/bin:$PATH" > ~/.bash_profile | |
source ~/.bash_profile | |
pip3 install awscli --upgrade --user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment