0

Pythonの最新バージョンpython3.10.0とdjangoバージョン3.2.8をインストールしました。コマンド プロンプトでコマンドを使用して mysqlclient をインストールしようとしpip install mysqlclientましたが、次のようなエラーが表示されます。

 Building wheel for mysqlclient (setup.py) ... error
  ERROR: Command errored out with exit status 1:
   command: 'F:\django\job\venv\Scripts\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\IIITK2\\AppData\\Local\\Temp\\pip-install-ja9ipfah\\mysqlclient_08057cd8bc0f44f5bca353c6775cb063\\setup.
py'"'"'; __file__='"'"'C:\\Users\\IIITK2\\AppData\\Local\\Temp\\pip-install-ja9ipfah\\mysqlclient_08057cd8bc0f44f5bca353c6775cb063\\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io
.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\IIITK2\AppData\Local\Temp\pip-wheel-p39k
z555'
   cwd: C:\Users\IIITK2\AppData\Local\Temp\pip-install-ja9ipfah\mysqlclient_08057cd8bc0f44f5bca353c6775cb063\
  Complete output (23 lines):
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build\lib.win-amd64-3.10
  creating build\lib.win-amd64-3.10\MySQLdb
  copying MySQLdb\__init__.py -> build\lib.win-amd64-3.10\MySQLdb
  copying MySQLdb\_exceptions.py -> build\lib.win-amd64-3.10\MySQLdb
  copying MySQLdb\connections.py -> build\lib.win-amd64-3.10\MySQLdb
  copying MySQLdb\converters.py -> build\lib.win-amd64-3.10\MySQLdb
  copying MySQLdb\cursors.py -> build\lib.win-amd64-3.10\MySQLdb
  copying MySQLdb\release.py -> build\lib.win-amd64-3.10\MySQLdb
  copying MySQLdb\times.py -> build\lib.win-amd64-3.10\MySQLdb
  creating build\lib.win-amd64-3.10\MySQLdb\constants
  copying MySQLdb\constants\__init__.py -> build\lib.win-amd64-3.10\MySQLdb\constants
  copying MySQLdb\constants\CLIENT.py -> build\lib.win-amd64-3.10\MySQLdb\constants
  copying MySQLdb\constants\CR.py -> build\lib.win-amd64-3.10\MySQLdb\constants
  copying MySQLdb\constants\ER.py -> build\lib.win-amd64-3.10\MySQLdb\constants
  copying MySQLdb\constants\FIELD_TYPE.py -> build\lib.win-amd64-3.10\MySQLdb\constants
  copying MySQLdb\constants\FLAG.py -> build\lib.win-amd64-3.10\MySQLdb\constants
  running build_ext
  building 'MySQLdb._mysql' extension
  error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/

誰かがこれに対する解決策を言うことができますか?

4

2 に答える 2

0

Ubuntu で python パッケージmysqlclientをインストールするには、次の OS パッケージが必要です。

sudo apt install libmysqlclient-dev
于 2022-02-14T09:26:38.267 に答える