0
How can I install CherryPy
I tried to install cherrypy but it didn't work 💔 Can anyone help me?
2 Réponses
0
# terminal or cmdline
pip install CherryPy
# jupyter notebook
!pip install CherryPy
# anaconda or anaconda prompt
conda install CherryPy
My preference is to use "conda" but you need to have the Anaconda distribution downloaded and installed in order to take advantage of "conda" which is similar to "pip" but I feel "conda" handles dependencies better and typically generates fewer errors
0
Ok thank you