List Requirements to install CherryPy?

devquora
devquora

Posted On: Feb 22, 2018

 

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

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    CherryPy Interview Questions

    What is CherryPy?

    CherryPy is an object-oriented HTTP web application framework based on Python programming language.CherryPy is designed..

    CherryPy Interview Questions

    Why Cherrypy?

    CherryPy is now more than ten years old and it is has proven to be very fast and stable. It is being used in production..

    CherryPy Interview Questions

    List some features of Cherrypy Framework?

    Below is list of some key features of Cherrypy FrameworkA reliable, HTTP/1.1-compliant, WSGI thread-pooled web server...