Installation » History » Version 1
Version 1/9
-
Next » -
Current version
Elmer de Looff, 2012-06-05 10:59
Initial installation instructions
Installation¶
µWeb is developed on, and intended primarily to run on Debian Linux. For now, these instructions will cater to that operating system mainly.
Packages¶
µWeb requires the following packages to be present
python-decorator
python-lockfile
python-openid
python-simplejson
python-tz
Installing these can be done using apt
, as follows:
sudo apt-get install python-lockfile python-decorator python-tz python-simplejson python-openid
Python path¶
The installation directory of µWeb should be included in the PYTHONPATH
. For instance, if µWeb is installed in the directory '/home/bob/development/uweb'
, the directory '/home/bob/development'
should be added to the PYTHONPATH
environment variable.
This can be achieved by adding the following to your .bashrc
:
export PYTHONPATH="$PYTHONPATH:/home/bob/development"