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
Line 
1#!/bin/bash
2easy_install -i http://www.turbogears.org/2.0/downloads/current/index tg.devtools
3# deal with bugs that happen during install
4easy_install tg.devtools
5easy_install tg.devtools
6easy_install flup
7easy_install tw.forms
8
9# Install remctl
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
15./configure --enable-python
16make
17cd python
18python setup.py build
19python setup.py install
20cd ../..
21rm -rf remctl-$VERSION
22
23python setup.py develop
24
25paster --help
Note: See TracBrowser for help on using the repository browser.