From: Hans-Christoph Steiner Date: Fri, 18 Apr 2014 17:12:29 +0000 (-0400) Subject: add generic installation instructions to README X-Git-Tag: 0.2~112^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c429751a1e2df9f16f8150a9b77ef9d10667d680;p=fdroidserver.git add generic installation instructions to README --- diff --git a/README b/README index 4a9ac075..218deff8 100644 --- a/README +++ b/README @@ -10,3 +10,21 @@ assist in creating, testing and submitting metadata to the main repository. For documentation, please see the docs directory. Alternatively, visit https://f-droid.org/manual/ + + +Installing +---------- + +The easiest way to install the fdroidserver tools is to use virtualenv and pip +(if you are Debian/Ubuntu/Mint/etc, you can first try installing using +`apt-get install fdroidserver`). First, make sure you have virtualenv +installed, it should be included in your OS's Python distribution or via other +mechanisms like dnf/yum/pacman/emerge/Fink/MacPorts/Brew. Then here's how to +install: + + git clone https://gitlab.com/fdroid/fdroidserver.git + cd fdroidserver + virtualenv env/ + . env/bin/activate + pip install -e . + python setup.py install