import cherrypy code example

Example: python cherrypy

# install cherrypy (basic, if path is not set yet)
py -m pip install cherrypy
# or set PATH to use pip:
setx PATH "%PATH%;C:\<path\to\python\directory\>\Scripts"
pip install cherrypy
# or
pip3 install cherrypy --upgrade
# if "connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed" [!]:
py -m pip install --trusted-host pypi.python.org pip cherrypy
# if PermissionError: [WinError 5] Access is denied
py -m pip install --user cherrypy
# or via creating a virtual environment venv:
py -m venv c:\path\to\new\environment
# then execute:
c:\path\to\new\environment\Scripts\activate.bat