Installation¶
You will need Python 2.7 or 3.5 and higher to install
and use dataflake.wsgi.werkzeug
.
It is advisable to install dataflake.wsgi.werkzeug
into a
virtualenv or similar environment like a buildout from
zc.buildout
to obtain isolation from any “system” packages you’ve got
installed in your Python version (and likewise, to prevent
dataflake.wsgi.werkzeug
from globally installing versions of packages
that are not compatible with your system Python).
Setuptools/Distutils:
$ easy_install dataflake.wsgi.werkzeug
Pip:
$ pip install dataflake.wsgi.werkzeug
If you use zc.buildout
you can add dataflake.wsgi.werkzeug
to the necessary eggs
section to have it pulled in automatically:
...
eggs =
dataflake.wsgi.werkzeug
...