导入错误:Zope 中没有名为 MySQLdb 的模块

发布于 2024-08-28 01:50:15 字数 111 浏览 1 评论 0原文

我可以从交互式 python 命令行导入 MySQLdb,但是当我在 Zope 中的脚本 (python) 中尝试导入时,Zope 给出了导入错误。 Zope 是否会由于某种原因没有在与命令行相同的位置查找?

I can import MySQLdb from the interactive python command line but Zope gives me an import error when I try it from within a script (python) in Zope. Could Zope be not looking in the same places as the command line for some reason?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两个我 2024-09-04 01:50:15

这可能是因为你有 2 个版本的 python,你可以检查 sys.executable

你可以通过

  • 更改 Zope 的 python 运行环境以与你的帐户环境匹配来
  • 解决这个问题,为 Zope 使用的 python 版本安装 MySQLdb

It could be because of you have 2 versions of python, you could check with sys.executable

You could solve that by

  • changing Zope's python running environment to be match with your account environment
  • install MySQLdb for python version used by Zope
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文