是否有 python 2.7 mySql db API 的预构建版本可以安装并与 django 一起使用,还是我必须从头开始构建它?
我想安装django并使用mysql作为后端。
我安装了 django 并且运行良好。我现在正在遵循第一个教程并创建了我的网站。
将mysql后端放入settings.py后,Web服务器不再运行。我收到以下错误:
raise ImproperlyConfigured("加载 MySQLdb 模块时出错:%s" % e) django.core.exceptions.ImproperlyConfigured:加载 MySQLdb 模块时出错:没有名为 MySQLdb 的模块
我已经在远程计算机上设置了 mysql 实例。我用我的数据库信息更改了 settings.py 文件,但在安装和初始教程之后,它似乎仍然希望我为 MySQL 5.1 数据库安装 Python 数据库 API 2.0 接口。
我看到的唯一链接是源代码。
是否有适用于 python 2.7 的 python 库的 mysql 预构建版本,并且构建后我不需要在我的机器上安装 C++ 编译器等来安装 django。
i want to install django and use mysql as the backend.
i installed django and it worked fine. i am now following the first tutorial and created mysite.
After putting the mysql backend into into the settings.py, the web server no longer ran. I get the following error:
raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e)
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module named MySQLdb
i already have a mysql instance setup on a remote machine. i changed the settings.py file with my db info but following to install and the initial tutorial, it still seems to want me to install Python database API 2.0 interface for the MySQL 5.1 database.
the only links i see are to the source code.
Is there a prebuilt version of mysql for python libraries that work for python 2.7 and are built so i don't need C++ compilers, etc on my machine to get django setup.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 Windows,您可以尝试 http://www.codegood.com/archives/129
在 Linux 上,您通常会使用本机包管理器来安装它,例如
sudo apt-get install mysql-python
或通过sudo easy_install mysqld
。如果您安装了正确版本的 Visual Studio(2010?)或 mingw,
easy_install
方式也适用于 Windows。For windows you might try the binary installer from http://www.codegood.com/archives/129
On linux you would normally install it using the native package manager, e.g.
sudo apt-get install mysql-python
or viasudo easy_install mysqld
.The
easy_install
way will also work on windows provided you have installed the right version of Visual Studio (2010?) or mingw.