Last active
November 8, 2017 06:04
-
-
Save tomwwright/230e99a9657c296b5077e2dfa93527b0 to your computer and use it in GitHub Desktop.
Ubuntu 17.10: Setup for software development
This file contains hidden or 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
# 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