From charlesreid1

Old Stuff

WARNING: BADLY OUT OF DATE.

I always run this script right after installing Ubuntu Linux (or Debian, if I used it).

It installs a bunch of useful stuff for building software from source.

#!/bin/sh

sudo apt-get install -y build-essential
sudo apt-get install -y git
sudo apt-get install -y make
sudo apt-get install -y m4
sudo apt-get install -y bison
sudo apt-get install -y flex
sudo apt-get install -y tar
sudo apt-get install -y perl
sudo apt-get install -y binutils
sudo apt-get install -y gcc
sudo apt-get install -y libstdc++6-dev
sudo apt-get install -y libc6-dev
sudo apt-get install -y gcc4.2
sudo apt-get install -y g++
sudo apt-get install -yf g77
sudo apt-get install -yf gfortran
sudo apt-get install -yf gnuplot
sudo apt-get install -yf octave
sudo apt-get install -y lynx
sudo apt-get install -y tetex-base tetex-bin tetex-extra
sudo apt-get install -y sed
sudo apt-get install -y awk

sudo apt-get install -y libgfortran1
sudo apt-get install -y libgfortran2
sudo apt-get install -y libgfortran
sudo apt-get install -y libgcc1

sudo apt-get install -y subversion
sudo apt-get install -y python-2.7
sudo apt-get install -y python2.7-numpy
sudo apt-get install -y python2.7-scipy
sudo apt-get install -y ipython
sudo apt-get install -y firefox-3.0
sudo apt-get install -y mozilla-firefox-adblock

sudo apt-get install -y lyx

sudo apt-get install -y libncurses4 
sudo apt-get install -y libncurses5 
sudo apt-get install -y ncurses-base

Python Stuff

# python 2
apt-get -y install python python-pip
# python 3
apt-get -y install python3 python3-pip


Flags