Skip to content

Instantly share code, notes, and snippets.

@Voronenko
Created January 18, 2023 14:58
Show Gist options
  • Save Voronenko/580dddefea5c0da77ded48cc48c7ea7b to your computer and use it in GitHub Desktop.
Save Voronenko/580dddefea5c0da77ded48cc48c7ea7b to your computer and use it in GitHub Desktop.
dummy snippet to dirty get aws cli v1 in python container
#!/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