soms pip install mysqlclient commando werkt niet, volg deze stappen:
1) zoek onofficiële python-binaire bestanden of ga naar https://www.lfd. uci.edu/~gohlke/pythonlibs/ en zoek(ctrl+f)op die pagina naar mysqlclient
2) controleer uw python-versie op de machine en download de whl bestand geschikt voor uw gedownloade python-versie, zoals type python in de opdrachtprompt en u krijgt uw python-versie
>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) download dat bestand en typ de volgende code in uw omgeving of waar u het whl-bestand heeft gedownload>pip install mysqlclient-1.4.4-cp37-cp37m-win32.whl
hoop dat dit werkt