source: main/waeup.sirp/trunk/docs/source/userdocs/install_on_windows.rst @ 6269

Last change on this file since 6269 was 6269, checked in by Henrik Bettermann, 13 years ago

Add buildout-windows.cfg and instruction for installation of SIRP on Windows computers.

File size: 2.6 KB
Line 
1Installing waeup.sirp on Windows 2000, XP, Vista, Windows 7
2***********************************************************
3
41. Install Python. Currently, version 2.6.x and version 2.5.x are supported. Note that these links point to installers for the ordinary x86 processor architecture. We recommend to download the follwoing software and install into into C:\Python26:
5
6http://www.python.org/ftp/python/2.6.0/python-2.6.0.msi
7
8http://sourceforge.net/project/downloading.php?group_id=78018&filename=pywin32-213.win32-py2.6.exe
9
10http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c11.win32-py2.6.exe
11
123. Add 'C:\Python26\Scripts\'to your system path (see instruction below)
13
144. Open up a command window and change to the folder where you want to place the sandbox that will contain your SIRP project. In this HowTo we will assume this folder is C:\
15
16C:\[any_path]> cd c:\
17
185. Install virtualenv by using the command:
19
20C:\> easy_install virtualenv
21
226. Create an isolated environment (sandbox) using the command:
23
24C:\> virtualenv winsirp
25
267. Activate the environment:
27
28C:\> cd winsirp
29C:\winsirp> Scripts\activate
30
31Note that the system prompt has changed.
32
338. Copy the waeup.sirp folder into C:\winsirp
34
359. Run the bootstrap script:
36
37(winsirp) C:\winsirp\waeup.sirp> cd waeup.sirp
38(winsirp) C:\winsirp\waeup.sirp> python bootstrap\bootstrap.py -c buildout-windows.cfg
39
4010. Run buildout (this takes a while!):
41
42C:\winsirp\waeup.sirp> bin\buildout.exe -c buildout-windows.cfg
43
4411. You can deactivate your environment again:
45
46(winsirp) C:\winsirp\waeup.sirp> ..\Scripts\deactivate
47
4811. Start your SIRP instance:
49
50C:\winsirp\waeup.sirp> bin\paster serve parts\etc\deploy.ini
51
52or from anywhere in your system:
53
54C:\[any_path]> C:\winsirp\trunk\bin\paster serve C:\winsirp\trunk\parts\etc\deploy.ini
55
5612. Visit the SIRP website and creata your university instance:
57
58http://localhost:8080
59
60User name: grok
61Password: grok
62
63
64
65Change system path in Windows 2000, XP, Vista, Windows 7
66********************************************************
671. Right-click on the My Computer icon. (Under Windows XP, Vista, or Windows 7, the My Computer Icon may be located in the start menu.)
68
692. Choose Properties from the context menu. Alternatively, you can double-click on the System icon in the Control Panel.
70
714. Click the Advanced tab or "Advanced system settings" on Windows Vista or Windows 7
72
735. Click the Environment Variables button.
74
756. Click on the variable called 'Path' and then click on Edit. Now add 'C:\Python26\Scripts\' to the value of the variable, using a semi-colon as a separator.
76
777. Reboot Windows
Note: See TracBrowser for help on using the repository browser.