我第一次使用mysql
和django
。两者都已安装,我可以在工作台或命令提示符中使用mysql
,但是当我尝试在django
中进行迁移时,它无法找到mysqldb
模块,将大部分内容裁掉,见下文:
追踪(最近一次呼叫最后一次):
File "manage.py", line 22, in <module>
execute_from_command_line(sys.argv)
File "C:\Users\jerro\Desktop\djangoEnv\lib\site-packages\django\db\backends\mysql\base.py", line 28, in <module>
raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e)
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module named MySQLdb
所以我一直在尝试使用pip install mysql-python
而不能这样做。我安装了mysql-connector
,annaconda
,并尝试了很多其他建议和谷歌,没有运气。它给出了以下错误:
running build_ext
building '_mysql' extension
creating build\temp.win-amd64-2.7
creating build\temp.win-amd64-2.7\Release
C:\Users\jerro\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Dversion_info=(1,2,5,'final',1) -D__version__=1.2.5 "-IC:\Program Files (x86)\MySQL\MySQL Connector C 6.0.2\include" -IC:\Python27\include -Ic:\users\jerro\desktop\djangoenv\PC /Tc_mysql.c /Fobuild\temp.win-amd64-2.7\Release\_mysql.obj /Zl
_mysql.c
_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': No such file or directory
error: command 'C:\\Users\\jerro\\AppData\\Local\\Programs\\Common\\Microsoft\\Visual C++ for Python\\9.0\\VC\\Bin\\amd64\\cl.exe' failed with exit status 2
----------------------------------------
Command "c:\users\jerro\desktop\djangoenv\scripts\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\jerro\\appdata\\local\\temp\\pip-build-_da1js\\MySQL-python\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\jerro\appdata\local\temp\pip-kqvwr3-record\install-record.txt --single-version-externally-managed --compile --install-headers c:\users\jerro\desktop\djangoenv\include\site\python2.7\MySQL-python" failed with error code 1 in c:\users\jerro\appdata\local\temp\pip-build-_da1js\MySQL-python\
我做过或尝试过没有做过任何建议?我正在使用windows10
更新,我终于能够安装pip mysql-python了,现在唯一的错误是我尝试makemigrations时没有名为mysqldb的模块。 mysql-connector,安装了mysqlclient,仍然没有运气。
答案 0 :(得分:1)
有时 pip install mysqlclient 命令不起作用 因此,请按照以下步骤操作:
1)搜索非官方python二进制文件或 转到 https://www.lfd.uci.edu/~gohlke/pythonlibs/ 并在该页面上搜索(ctrl + f)mysqlclient
2)在计算机上检查您的python版本 并下载适用于您下载的python版本的 whl 文件 喜欢 在命令提示符下键入python 你会得到你的python版本
>python
Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 21:26:53) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
this is python 3.7.3 version and works on 32 bit
so the whl file will be mysqlclient-1.4.4-cp37-cp37m-win32.whl
python 3.7.3 = cp37 and 32 bit is win32
3)下载该文件,然后在您的环境或您下载whl文件的位置键入以下代码 > pip安装mysqlclient-1.4.4-cp37-cp37m-win32.whl
希望这会起作用
答案 1 :(得分:0)
转到Mysql并安装Connector。这应该可以解决你的问题。