terkadang pip install mysqlclient perintah tidak berfungsi, ikuti langkah-langkah ini:
1) cari binari python tidak resmi atau buka https://www.lfd. uci.edu/~gohlke/pythonlibs/ dan cari(ctrl+f)di halaman itu untuk mysqlclient
2) periksa versi python Anda di mesin dan unduh whl file yang sesuai untuk versi python yang Anda unduh seperti jenis python di command prompt dan Anda akan mendapatkan versi python Anda
>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) unduh file itu dan ketik kode berikut di lingkungan Anda atau tempat Anda mengunduh file whl>pip install mysqlclient-1.4.4-cp37-cp37m-win32.whl
semoga berhasil