The Swiss Army Knife For Python Web Developers
Werkzeug requires at least Python 2.3 to work correctly.
You can install the most recent Werkzeug version using easy_install:
sudo easy_install Werkzeug
This will install a Werkzeug egg in your Python installation’s site-packages directory.
Note that the last command will automatically download and install setuptools if you don’t already have it installed. This requires a working Internet connection.
This will install Werkzeug into your Python installation’s site-packages directory.
As an alternative to step 4 you can also do python setup.py develop which will install the package via setuptools in development mode.
sudo easy_install Werkzeug==dev
This will install a Werkzeug egg containing the latest mercurial tip in your Python installation’s site-packages directory. Every time the command is run, the sources are updated from the mercurial repository.
The egg builds include a documentation which is available in the docs folder of the egg. If you’re running Linux you will find the documentation here:
file:///usr/lib/python2.X/site-packages/Werkzeug-Y.Z-py2.X.egg/docs/index.html
where X, Y and Z must be replaced by the Python/Werkzeug version number.