CherryPy does not have any mandatory requirements. CherryPy comes with pluggable components or modules.To use a certain feature you need to install certain packages
The basic requirements for installation of CherryPy framework include
- Python with version 2.7 or above
- CherryPy 3.0
CherryPy can be easily installed via common Python package managers such as setup tools or pip.
$ easy_install cherrypy
pip install cherrypy
You may also get the latest CherryPy version by grabbing the source code from Github:
$ git clone https://github.com/cherrypy/cherrypy
$ cd cherrypy
$ python setup.py install