source: gutenbach-web/virtualenv-create @ 6388b71

debianmacno-cupsweb
Last change on this file since 6388b71 was 6388b71, checked in by Edward Z. Yang <edwardzyang@…>, 15 years ago

Make it work with TG2rc1.
Signed-off-by: Edward Z. Yang <edwardzyang@…>

  • Property mode set to 100644
File size: 535 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
10wget http://archives.eyrie.org/software/kerberos/remctl-2.13.tar.gz
11tar -xf remctl-2.13.tar.gz
12rm remctl-2.13.tar.gz
13cd remctl-2.13
14./configure --enable-python
15make
16cd python
17python setup.py build
18python setup.py install
19cd ../..
20rm -rf remctl-2.13
21
22python setup.py develop
23
24paster --help
Note: See TracBrowser for help on using the repository browser.