時々pipinstall mysqlclient コマンドが機能しない次の手順に従ってください:
1)非公式のPythonバイナリを検索するか、 https://www.lfdにアクセスします。 uci.edu/~gohlke/pythonlibs/ そのページでmysqlclientを検索(ctrl + f)します
2)マシンでPythonのバージョンを確認し、 whlをダウンロードします ダウンロードしたpythonversionliketypepythonに適したファイルをコマンドプロンプトに入力すると、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 install mysqlclient-1.4.4-cp37-cp37m-win32.whl
これがうまくいくことを願っています