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
|
.. _installation:
Installation
============
.. currentmodule:: flask_restful
Install Flask-RESTful with ``pip`` ::
pip install flask-restful
The development version can be downloaded from `its page at GitHub
<https://github.com/flask-restful/flask-restful>`_. ::
git clone https://github.com/flask-restful/flask-restful.git
cd flask-restful
python setup.py develop
Flask-RESTful has the following dependencies (which will be automatically
installed if you use ``pip``):
* `Flask <http://flask.pocoo.org>`_ version 0.10 or greater
Flask-RESTful requires Python version 2.7, 3.4, 3.5, 3.6 or 3.7
|