WSGI:_mysql.so 未找到图像

发布于 2024-11-08 18:49:25 字数 843 浏览 4 评论 0原文

环境:MacBook Pro、OSX 10.6、Python 2.6.1 64 位、MySQL 5.X 64 位

我在安装 MySQLdb 与 Django 一起使用时遇到问题。安装完所有内容后,我可以打开 python 解释器并执行:

import MySQLdb

这工作正常。我还能够创建和运行 django 应用程序并使用开发服务器托管它们:

./manage.py runserver

但我现在尝试在本地 apache 中托管这个 django 应用程序。因此,我安装并配置了 mod_wsgi,并向 httpd.conf 添加了一个虚拟主机,设置了 *.wsgi 脚本的位置。从该脚本中,我可以定义应用程序函数并返回一个简单的 Hello World 字符串。

但是当我尝试运行:

import MySQLdb

在我的 *.wsgi 脚本中的 try 块内时,捕获的异常显示如下:

dlopen(/Library/Python/2.6/site-packages/_mysql.so, 2): Library not loaded: 
libmysqlclient.18.dylib Referenced from: /Library/Python/2.6/site-packages/_mysql.so 
Reason: image not found

所以,简单地说,问题是我的 MySQLdb 适配器在 python 解释器和 django 开发服务器中使用它时可以工作,但不是通过 Apache 和 mod_wsgi。

有什么建议吗?

Environment: MacBook Pro, OSX 10.6, Python 2.6.1 64 bit, MySQL 5.X 64 bit

I am having problems installing MySQLdb for use with Django. After installing everything I am able to open the python interpreter and execute:

import MySQLdb

This works fine. I am also able to create and run django apps and host them using the development server:

./manage.py runserver

But I am now trying to host this django app in my local apache. So I installed and configured mod_wsgi and added a virtual host to httpd.conf setting the location of my *.wsgi script. From that script I am able to define the application function en return a simple Hello World string.

But when I try to run:

import MySQLdb

inside a try block in my *.wsgi script, the caught exception says the following:

dlopen(/Library/Python/2.6/site-packages/_mysql.so, 2): Library not loaded: 
libmysqlclient.18.dylib Referenced from: /Library/Python/2.6/site-packages/_mysql.so 
Reason: image not found

So, simply put, the problem is that my MySQLdb adapter works when using it in the python interpreter and django development server, but not through Apache and mod_wsgi.

Any suggestions?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文