Skip to content

Instantly share code, notes, and snippets.

View npyoung's full-sized avatar

Noah Young npyoung

  • IndustrialNext
  • San Francisco
View GitHub Profile
@npyoung
npyoung / amzn_ami_py_conf.sh
Last active August 29, 2015 14:16
Scientific python2.7 install for Amazon Linux AMI
# update install packages
yum update -y
# install build tools
yum install make automake gcc gcc-c++ kernel-devel git-core -y
# install python 2.7 and change default python symlink
yum install python27-devel -y
rm /usr/bin/python
ln -s /usr/bin/python2.7 /usr/bin/python