forked from informatics-isi-edu/webauthn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL.debian
33 lines (22 loc) · 1.01 KB
/
INSTALL.debian
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
30
31
32
33
Overview
========
This document describes how to install tagfiler on debian based distributions.
The instruction should also work on other distributions after taking into
account directory layout and package manager naming differences.
Dependencies
============
webauthn2 requires python 2.6+ and several python libraries.
The libraries can be installed using system packages (preferred) or using
pip or easy_install. For example on ubuntu 12.04:
sudo apt-get install python-{webpy,psycopg2,tz,oauth,suds}
OR
sudo pip install web.py psycopg2 tz oauth suds
Install
=======
The simplest way to install webauthn2 is using the setup.py script:
sudo python setup.py install
Note that this will not automatically pull in dependencies from PyPI because it
uses distutils instead of setuptools. This was done to avoid extra dependencies
and provide more control over using distribution packages.
This can also be done as a standard user by using the --user option
(see python setup.py install -h), or using a virtualenv.