108 lines
2.8 KiB
Plaintext
108 lines
2.8 KiB
Plaintext
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 -r 1.2-dev 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.
|
|
|