Skip to content

Instantly share code, notes, and snippets.

@tomwwright
Last active November 8, 2017 06:04
Show Gist options
  • Save tomwwright/230e99a9657c296b5077e2dfa93527b0 to your computer and use it in GitHub Desktop.
Save tomwwright/230e99a9657c296b5077e2dfa93527b0 to your computer and use it in GitHub Desktop.
Ubuntu 17.10: Setup for software development
# install Java 8 JDK
sudo apt-get install openjdk-8-jdk
# install pip
sudo apt-get install python-pip
# install AWS CLI
pip install awscli --user
# add the following to ~/.bashrc: export PATH="~/.local/bin:$PATH"
# install Ansible (development)
pip install git+https://github.com/ansible/ansible.git@devel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment