sudo easy_install mako not working at the moment dev.pocoo.org not responding sudo easy_install -f . pygments sudo easy_install jinja2
Once you have a fresh instance of Ubuntu running, it is time to install a few critical applications.
It is best to perform the following steps on a live instance, just incase you install something you didn't mean to.
#Location of your local Context instance: export USBPATH=/c export VERSION=10.04 export ARCHIVEPATH=$USBPATH/downloads/ubuntu/$VERSION sudo mkdir -p $ARCHIVEPATH cd $ARCHIVEPATH
#If this is a new version, backup previous startup notes: cp $USBPATH/technical/system/ubuntu.txt $USBPATH/technical/system/ubuntu-$PREVIOUS.txt #create a new directory for archives: mkdir $USBPATH/downloads/ubuntu/$VERSION #start with a fresh copy of sources.list (will update later) #cp /etc/apt/sources.list $USBPATH/downloads/ubuntu/$VERSION/sources.list
#be sure to clean up any updates that have already been downloaded previously ls /var/cache/apt/archives/ mkdir updates/var/cache/apt/archives/ sudo mv /var/cache/apt/archives/*.deb updates/
sudo apt-get update
sudo apt-get install -y -d python2.6-dev python-imaging python-docutils python-numpy python-pip python-setuptools #python-setuptools (for easy_install? now using pip?) #for pyaudio (should already have installed) #sudo apt-get install -y -d libportaudio2 python-support
mkdir python sudo mv /var/cache/apt/archives/*.deb python/
#emacs-goodies-el is only available with standard emacs #this is a good chance to see if standard emacs renders better on latest ubuntu sudo apt-get install -y -d emacs emacs-goodies-el mkdir emacs sudo mv /var/cache/apt/archives/*.deb emacs
sudo apt-get install -y -d jhead libid3tag0 libjpeg-progs libmad0 libmad0-dev libungif4g tofrodos mkdir libraries sudo mv /var/cache/apt/archives/*.deb libraries
#2009.04.05 15:35:38 now available directly via apt-get sudo apt-get install -y -d gnome-do mkdir gnome-do sudo mv /var/cache/apt/archives/*.deb gnome-do/
#if not done earlier, #get base system updates #installing these may eat up memory on a live system #sudo apt-get upgrade -y -d #mkdir updates2 #sudo mv /var/cache/apt/archives/*.deb updates2/
#don't forget mozilla configs... either from scratch: #see firefox.txt then copy for future installs: cp -r ~/.mozilla . #cp -r /home/user/.mozilla . #or copy previous: #cp -r ../9.04/.mozilla .
#This downloads everything for local/later use. #To perform the actual installation, see startup.sh