Make sure you have installed...
sudo apt-get install python3-dev libxml2-dev libxslt1-dev zlib1g-dev libffi-dev openssl-devYou should use virtualenv (or FADES). Currently supports 3.5.
Create a virtualenv named pyarweb
pyvenv3 pyarwebIf you don't know how to use virtualenvwrapper please check official documentation
mkvirtualenv -p $(which python3) pyarwebpip install -r dev_requirements.txtdocker run --name pyarweb-db -e POSTGRES_DB=pyarweb -p 5432:5432 -d postgressu - postgres
createdb pyarweb./manage.py makemigrations # because Waliki presents some bug...
./manage.py migrate./manage.py test./manage.py runserver