Child: [27e822] (diff)

Download this file

setup-common.bash    30 lines (21 with data), 549 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
#
# Install everything (python) into a virtual environment.
# Maybe not important for sandboxes, but important locally.
#
sudo easy_install -U setuptools
sudo easy_install -U virtualenv
virtualenv --no-site-packages sandbox-env
. sandbox-env/bin/activate
easy_install ipython
easy_install -i http://www.turbogears.org/2.1/downloads/current/index tg.devtools
#
# Install _our_ code.
#
git clone ssh://engr.geek.net/forge
#
# Install all our (formal) dependencies.
#
cd forge/pyforge
python setup.py develop
# Start up the server?