我有问题导入(显然安装)在Mac上Cherrypy。我使用'pip',安装了setup.py的python,它可以工作(我也检查了Python文件夹中的文件夹)但是当我尝试导入cherrypy时,它不起作用:
ImportError: No module named 'cherrypy'
有人有同样的问题并找到了解决方案吗?
谢谢。
T.
我昨天遇到了同样的问题。我使用的是pip
,并且存在导入错误和其他错误。所以,我卸载了cherrypy(sudo pip uninstall cherrypy
)然后使用了sudo easy_install cherrypy
。它对我有用!
只是用
sudo easy_install cherrypy
如果你使用sudo easy_install cherrypy
确保你只有一个版本的python。在macOs上默认安装了Sierra版本的2.7。但如果你有2个版本的python,你必须确保哪个easy_install
想要用来安装cherrypy
。我的mac上有python 3.6,并且还有python 2.7,如果你想在3.6 python上安装cherrypy。
easy_install
终点站找到$ locate easy_install
/usr/bin/easy_install
/usr/bin/easy_install-2.7
/usr/local/bin/easy_install-3.6
现在您知道要使用哪个easy_install
应用程序来安装基于python版本使用的cherypy
。
cherrypy
$ sudo easy_install-3.6 cherrypy
如果你想在2.7 python上安装cherrypy
只需输入
`$ sudo easy_install cherrypy`
它将根据我们想要的版本安装
希望它的帮助:)