Skip to content

Instantly share code, notes, and snippets.

@pcolazurdo
Last active April 9, 2024 09:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save pcolazurdo/108fe129bcc69fb2bb53ba527f451441 to your computer and use it in GitHub Desktop.
Save pcolazurdo/108fe129bcc69fb2bb53ba527f451441 to your computer and use it in GitHub Desktop.
Installing basic development extensions on cloud9
# Install HomeBrew
# BEGIN Fix touch while this is not closed
[ ! -f /usr/bin/touch ] && sudo ln /bin/touch /usr/bin/touch
# END Fix touch while this is not closed
CI=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)
test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
test -r ~/.bash_profile && echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.bash_profile
echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.profile
# Update SAM CLI
brew tap aws/tap
brew install aws-sam-cli
sam --version
# Update CDK
npm install -g aws-cdk --force
# Install git-remote-codecommit helper
pip install --user git-remote-codecommit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment