Skip to content

Instantly share code, notes, and snippets.

View mchiocca's full-sized avatar

Michael Chiocca mchiocca

  • Automation Anywhere, Inc.
  • San Jose, CA
View GitHub Profile
@mchiocca
mchiocca / Docker-Ubuntu-1404.sh
Last active April 19, 2017 22:35
Install Docker and Docker Compose on Ubuntu 14.04
#!/bin/bash
sudo apt-get update
sudo apt-get install -yq linux-image-extra-$(uname -r) linux-image-extra-virtual
sudo apt-get install -yq apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
@mchiocca
mchiocca / Python2.7-CentOS6.8.sh
Created February 24, 2017 21:59
Install Python 2.7 on CentOS 6.8
#!/bin/bash
# Install external dependencies.
sudo yum install -y gcc make openssl-devel libffi-devel
# Download and install Python 2.7.5.
# Note that there are newer release versions available.
wget https://www.python.org/ftp/python/2.7.5/Python-2.7.5.tgz
tar xzf Python-2.7.5.tgz
cd Python-2.7.5