1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
============
Installation
============
Werkzeug requires at least Python 2.4 to work correctly though we
recommend upgrading to 2.5 or higher. Werkzeug currently does not support
Python 3 and there are no direct plans on supporting it for the time
being. If you wish to use Werkzeug on Python 3 please contact the
developers.
Installing a released version
=============================
As a Python egg (via easy_install or pip)
-----------------------------------------
You can install the most recent Werkzeug version using `easy_install`_::
sudo easy_install Werkzeug
Alternatively you can also use pip::
sudo pip install Werkzeug
Either way we strongly recommend using these tools in combination with
:ref:`virtualenv`.
This will install a Werkzeug egg in your Python installation's `site-packages`
directory.
From the tarball release
-------------------------
1. Download the most recent tarball from the `download page`_.
2. Unpack the tarball.
3. ``sudo python setup.py install``
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.
Installing the development version
==================================
1. Install `Git`_
2. ``git clone git://github.com/mitsuhiko/werkzeug.git``
3. ``cd werkzeug``
4. ``ln -s werkzeug /usr/lib/python2.X/site-packages``
.. _virtualenv:
virtualenv
==========
Virtualenv is probably what you want to use during development, and in
production too if you have shell access there.
What problem does virtualenv solve? If you like Python as I do,
chances are you want to use it for other projects besides Werkzeug-based
web applications. But the more projects you have, the more likely it is
that you will be working with different versions of Python itself, or at
least different versions of Python libraries. Let's face it; quite often
libraries break backwards compatibility, and it's unlikely that any serious
application will have zero dependencies. So what do you do if two or more
of your projects have conflicting dependencies?
Virtualenv to the rescue! It basically enables multiple side-by-side
installations of Python, one for each project. It doesn't actually
install separate copies of Python, but it does provide a clever way
to keep different project environments isolated.
So let's see how virtualenv works!
If you are on Mac OS X or Linux, chances are that one of the following two
commands will work for you::
$ sudo easy_install virtualenv
or even better::
$ sudo pip install virtualenv
One of these will probably install virtualenv on your system. Maybe it's
even in your package manager. If you use Ubuntu, try::
$ sudo apt-get install python-virtualenv
If you are on Windows and don't have the `easy_install` command, you must
install it first. Check the :ref:`windows-easy-install` section for more
information about how to do that. Once you have it installed, run the
same commands as above, but without the `sudo` prefix.
Once you have virtualenv installed, just fire up a shell and create
your own environment. I usually create a project folder and an `env`
folder within::
$ mkdir myproject
$ cd myproject
$ virtualenv env
New python executable in env/bin/python
Installing setuptools............done.
Now, whenever you want to work on a project, you only have to activate
the corresponding environment. On OS X and Linux, do the following::
$ . env/bin/activate
(Note the space between the dot and the script name. The dot means that
this script should run in the context of the current shell. If this command
does not work in your shell, try replacing the dot with ``source``)
If you are a Windows user, the following command is for you::
$ env\scripts\activate
Either way, you should now be using your virtualenv (see how the prompt of
your shell has changed to show the virtualenv).
Now you can just enter the following command to get Werkzeug activated in
your virtualenv::
$ pip install Werkzeug
A few seconds later you are good to go.
.. _download page: http://werkzeug.pocoo.org/download
.. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools
.. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall
.. _Git: http://git-scm.org/
|