Updated INSTALL file for 1.2.

This commit is contained in:
Emanuel Schuetze 2012-04-27 16:07:57 +02:00
parent 8ed8ca0c58
commit 0818a78cf4
1 changed files with 107 additions and 103 deletions

210
INSTALL
View File

@ -1,103 +1,107 @@
Installation Instructions for OpenSlides
========================================
Content
-------
I. Installation on Windows (32/64bit)
II. Installation on GNU/Linux and MacOSX
I. Installation on Windows (32/64bit)
-------------------------------------
1. Install Python 2.7
a) Download and run 32bit MSI installer from http://www.python.org/download/
e.g. version 2.7.2:
http://www.python.org/ftp/python/2.7.2/python-2.7.2.msi
b) Add python dirs to PATH (via Control Panel > System > Advanced):
";C:\Python27;C:\Python27\Scripts"
2. Install Setuptools 0.6c11
Download and run 32bit binary installer from http://pypi.python.org/pypi/setuptools:
http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11.win32-py2.7.exe
3. Install required packages
Open command line (cmd) and run:
easy_install django django-mptt reportlab pil
4. Get OpenSlides:
a) Download latest OpenSlides release from http://openslides.org.
OR
b) Clone development version from mercurial repository
(anonymous checkout):
hg clone http://hg.openslides.org
If you have write access use instead:
hg clone ssh://hg@openslides.org/openslides
5. Run start.py
python start.py
The Username and Password for the first created Useraccount is 'admin'
II. Installation on GNU/Linux and MacOSX
----------------------------------------
Make sure that you have installed python and virtualenv on your
system.
1. Get OpenSlides:
a) Download latest OpenSlides release from http://openslides.org.
OR
b) Clone development version from mercurial repository (anonymous
checkout):
hg clone http://hg.openslides.org
If you have write access use instead:
hg clone ssh://hg@openslides.org/openslides
2. Setup virtualenv:
# Go to the (extracted/cloned) root directory of OpenSlides
# and create virtualenv environment
virtualenv --no-site-packages .venv
# activate virtualenv environment
. .venv/bin/activate
3. Install 'pip' (if not available):
easy_install pip
4. Install required packages:
pip install django django-mptt reportlab pil simplejson mercurial
5. Run start.py
python start.py
The Username and Password for the first created Useraccount is 'admin'
--
If you need help ask on OpenSlides users mailing list.
See www.openslides.org for more information.
Installation Instructions for OpenSlides 1.2
============================================
Content
-------
I. Installation on Windows (32/64bit)
II. Installation on GNU/Linux and MacOSX
I. Installation on Windows (32/64bit)
-------------------------------------
1. Install Python 2.7
a) Download and run 32bit MSI installer from http://www.python.org/download/
e.g. version 2.7.2:
http://www.python.org/ftp/python/2.7.2/python-2.7.2.msi
b) Add python dirs to PATH (via Control Panel > System > Advanced):
";C:\Python27;C:\Python27\Scripts"
2. Install Setuptools 0.6c11
Download and run 32bit binary installer from http://pypi.python.org/pypi/setuptools:
http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11.win32-py2.7.exe
3. Install required packages
Open command line (cmd) and run:
easy_install django django-mptt reportlab pil
4. Get OpenSlides:
a) Download latest OpenSlides release from http://openslides.org.
OR
b) Clone development version from mercurial repository:
hg clone http://hg.openslides.org
5. Start OpenSlides server and open URL in your default browser:
python start.py
If you run this script the first time new database and admin account
are created. Please change the password after first login!
Username: admin
Password: admin
Use 'python start.py --help' to show all start options.
II. Installation on GNU/Linux and MacOSX
----------------------------------------
Make sure that you have installed python and virtualenv on your
system.
1. Get OpenSlides:
a) Download latest OpenSlides release from http://openslides.org.
OR
b) Clone development version from mercurial repository:
hg clone http://hg.openslides.org
2. Setup virtualenv:
# Go to the (extracted/cloned) root directory of OpenSlides
# and create virtualenv environment
virtualenv --no-site-packages .venv
# activate virtualenv environment
. .venv/bin/activate
3. Install 'pip' (if not available):
easy_install pip
4. Install required packages:
pip install django django-mptt reportlab pil simplejson mercurial
5. Start OpenSlides server and open URL in your default browser:
python start.py
If you run this script the first time new database and admin account
are created. Please change the password after first login!
Username: admin
Password: admin
Use 'python start.py --help' to show all start options.
--
If you need help ask on OpenSlides users mailing list.
See www.openslides.org for more information.