Skip to content

Web GUI Installation

Dimitris Katsiros edited this page Aug 25, 2019 · 9 revisions

How to install and start the server

Prerequisites

  • Python 3.6 or later
  • pip3

Installation

  1. Clone the repository

    git clone https://github.com/eellak/gsoc2019-anonymization.git
    
  2. Install the requirments

    cd gsoc2019-anonymization
    pip3 install -r requirments.txt
    
  3. Start the server

    cd src
    python3 manage.py runserver --insecure
    

Now by default django serves at http://127.0.0.1:8000 .

Clone this wiki locally