Created
December 27, 2016 11:26
-
-
Save samuelcolvin/174781665c887fec19bb602750f43d54 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env bash | |
# git | |
apt-add-repository ppa:git-core/ppa -y | |
# pycharm | |
apt-add-repository ppa:mystic-mirage/pycharm -y | |
apt update | |
apt upgrade | |
# from above | |
apt install -y git pycharm | |
# general | |
apt install -y vim chromium-browser unzip gparted synaptic landscape-common gdebi curl whois | |
# python3 | |
apt install -y python3-pip libpython3-dev python3-dev | |
# postgresql | |
apt install -y postgresql-client postgresql postgresql-contrib postgresql-server-dev-all | |
# redis | |
apt install -y redis-server | |
# general libs | |
apt install -y libjpeg-dev libfreetype6-dev libffi-dev libsqlite3-dev | |
# compiz | |
# apt install -y compizconfig-settings-manager compiz-plugins compiz-plugins-extra unity-tweak-tool | |
# pip updates | |
pip install -U pip setuptools virtualenv ipython |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment