Created
February 6, 2016 23:20
-
-
Save swayson/ee3648afe6b7a3b78069 to your computer and use it in GitHub Desktop.
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
# DEFINE ENVIRONMENT VARIABLES | |
apt-get update | |
apt-get upgrade -y | |
# INSTALL PACKAGES | |
apt-get install -y aria2 | |
# CLEANUP | |
apt-get clean | |
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | |
#INSTALL ANACONDA | |
aria2c -s 16 -x 16 -k 30M https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda3-2.5.0-Linux-x86_64.sh -o Anaconda.sh | |
bash Anaconda.sh | |
#rm -rf Anaconda.sh | |
# Append to .bashrc | |
# INSTALL SUBLIME TEXt | |
sudo add-apt-repository ppa:webupd8team/sublime-text-3 | |
sudo apt-get update | |
sudo apt-get install sublime-text-installer | |
# INSTALL GNU PARALLEL | |
wget http://ftp.gnu.org/gnu/parallel/parallel-latest.tar.bz2 | |
tar -xvjf parallel-latest.tar.bz2 > extracted-files | |
cd $(head -n 1 extracted-files) | |
./configure && make && sudo make install | |
# DELETE THE FILES USED IN INSTALLINGpar | |
$ cd .. | |
$ rm -r $(head -n 1 extracted-files) | |
$ rm parallel-latest.tar.bz2 extracted-files | |
# Add my user to the virtual box group | |
sudo gpasswd -a <username> vboxsf | |
sudo reboot | |
# | |
# INSTALL SOLR | |
aria2c -s 16 -x 16 -k 30M http://apache.is.co.za/lucene/solr/5.4.1/solr-5.4.1.tgz | |
tar zxf solr-5.4.1.tgz | |
# INSTALL DATA SCIENCE TOOLS | |
sudo apt-get install jq | |
sudo apt-get install csvkit | |
# INSTALL | |
aria2c -s 16 -x 16 -k 30M https://d1opms6zj7jotq.cloudfront.net/python/pycharm-community-5.0.4.tar.gz | |
# INSTALL THEME | |
# http://www.ravefinity.com/p/download-ambiance-radiance-flat-colors.html | |
sudo add-apt-repository ppa:ravefinity-project/ppa | |
sudo apt-get update | |
sudo apt-get install ambiance-flat-colors radiance-flat-colors | |
sudo apt-get keepass2 | |
# Install openblas | |
conda install -c https://conda.anaconda.org/ot openblas |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment