Skip to content

Instantly share code, notes, and snippets.

@matiasinsaurralde
Forked from anonymous/trac_install.sh
Last active January 4, 2016 02:09
Show Gist options
  • Save matiasinsaurralde/8552748 to your computer and use it in GitHub Desktop.
Save matiasinsaurralde/8552748 to your computer and use it in GitHub Desktop.
#!/bin/sh
# latest trac!
wget "http://download.edgewall.org/trac/Trac-1.0.1.tar.gz"
tar xf Trac-1.0.1.tar.gz
cd Trac-1.0.1
# prepare setuptools
wget "http://peak.telecommunity.com/dist/ez_setup.py"
python ez_setup.py
# build & install it
python setup.py build
python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment