安装cherrypy Mac

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装cherrypy Mac相关的知识,希望对你有一定的参考价值。

我有问题导入(显然安装)在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。

  1. easy_install终点站找到$ locate easy_install
  2. 得到这样的结果

/usr/bin/easy_install /usr/bin/easy_install-2.7 /usr/local/bin/easy_install-3.6

现在您知道要使用哪个easy_install应用程序来安装基于python版本使用的cherypy

  1. 如果你在终端上安装3.6 python类型的cherrypy $ sudo easy_install-3.6 cherrypy

如果你想在2.7 python上安装cherrypy只需输入

`$ sudo easy_install cherrypy`

它将根据我们想要的版本安装

希望它的帮助:)

以上是关于安装cherrypy Mac的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 CherryPy 配置 IP 地址?

使用pip命令产生错误:[ModuleNotFoundError: No module named 'cherrypy']

rest_cherrypy

win32com.client.Dispatch + Cherrypy = CoInitialize 没有被调用

如何从一个简单的网络应用程序中注销。在 CherryPy,Python

python 一个终端代码片段,在mac上生成可启动的usb live CD,以运行类似ubuntu或debian的内容。