source: gutenbach-web/old/virtualenv-create @ 27ee337

debianmacno-cupsweb
Last change on this file since 27ee337 was 27ee337, checked in by Kyle Brogle <broglek@…>, 14 years ago

Actually moved files into 'old' directory

  • Property mode set to 100644
File size: 570 bytes
RevLine 
[973dd91]1#!/bin/bash
2easy_install -i http://www.turbogears.org/2.0/downloads/current/index tg.devtools
[0b8c868]3# deal with bugs that happen during install
[973dd91]4easy_install tg.devtools
5easy_install tg.devtools
6easy_install flup
[6388b71]7easy_install tw.forms
[973dd91]8
9# Install remctl
[3388193]10VERSION="2.14"
11wget http://archives.eyrie.org/software/kerberos/remctl-$VERSION.tar.gz
12tar -xf remctl-$VERSION.tar.gz
13rm remctl-$VERSION.tar.gz
14cd remctl-$VERSION
[973dd91]15./configure --enable-python
16make
17cd python
18python setup.py build
19python setup.py install
20cd ../..
[3388193]21rm -rf remctl-$VERSION
[973dd91]22
[6388b71]23python setup.py develop
24
[973dd91]25paster --help
Note: See TracBrowser for help on using the repository browser.