尝试python manage.py syncdb
,但它给了我一个错误。与此处的许多其他问题类似,但提供的解决方案在安装后无法解决错误。
我的项目目录中的settings.py
文件
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'network',
'USER': 'root',
'PASSWORD': 'mypass',
'HOST': '', #EMPTY FOR LOCALHOST
'PORT': '3307', #Empty by default
}
}
我正在使用Windows 7,Python 3.4(我听说与安装MySQL-python不兼容,所以我下载了mysqlclient 1.3.6)。
当我运行easy_install mysql-python
时会导致
_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': No such file or directory
error: Setup script exited with error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\BIN\\cl.exe'
failed with exit status 2
同样,它在运行pip install mysql-python
时会询问config-win.h,以及可怕的错误
Command "D:\Users\Python\python.EXE -c "import setuptools, tokenize;__file__='C:\\Users\\AppData\\Local\\T
emp\\pip-build-w7q9kjxi\\mysql-python\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('
\r\n', '\n'), __file__, 'exec'))" install --record C:\Users\AppData\Local\Temp\pip-u982sugf-record\install-record.t
xt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\AppData\Local\Temp\pip-build
-w7q9kjxi\mysql-python
我对此非常困惑。我一直在看的教程偏离了我,我不知道如何处理WHL的mysqlclient。
我已经尝试过的事情:
easy_install Distribute
有效,但不会改变任何内容
python manage.py syncdb
没有名为'MySQLdb'的模块
apt-get install python-mysqldb
一词'apt-get'根本无法识别。
请帮助解决这个初学者问题,感谢您的时间,如果需要更多信息,我很乐意提供。
答案 0 :(得分:3)
如果没有Visual Studio,您需要binary installer来获得正确的Python版本和体系结构。最简单的可能是为安装的Python版本获取32位和64位软件包并安装它们。
答案 1 :(得分:0)
我在Windows上遇到了同样的错误,我通过单独下载然后复制MySQL_python-1.2.5-py2.7.egg-info
和MySQLdb
文件夹以及_mysql.pyd
和_mysql_exceptions.py
文件解决了这个问题。 C:\Users\%The-path-of-your-project%\Lib\site-packages