python pip実行時に「error: Microsoft Visual C++ 14.0 is required. Get it with “Build Tools for Visual Studio”」が発生した場合の対処法
pip install実行時にエラー「error: Microsoft Visual C++ 14.0 is required. Get it with “Build Tools for Visual Studio”」が発生した場合の対処法を記述してます。
環境
- OS windows10 pro 64bit
- python 3.6.8
- pip 20.1.1
エラー全文
[pip install」実行時に発生。
running build_ext
building 'geventhttpclient._parser' extension
error: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/
----------------------------------------
ERROR: Command errored out with exit status 1: 'c:\users\testuser\scoop\apps\python\3.8.4\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\testuser\\AppData\\Local\\Temp\\pip-install-ksgd7scx\\geventhttpclient\\setup.py'"'"'; __file__='"'"'C:\\Users\\testuser\\AppData\\Local\\Temp\\pip-install-ksgd7scx\\geventhttpclient\\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\testuser\AppData\Local\Temp\pip-record-wrb3wqwg\install-record.txt' --single-version-externally-managed --compile --install-headers 'c:\users\testuser\scoop\apps\python\3.8.4\Include\geventhttpclient' Check the logs for full command output.
対処法
エラーに書いてある通り「Visual C++ Build Tools 」をインストールすることで解決しました。
こちらのページより「Visual Studio 2019のツール」から
「Build Tools for Visual Studio 2019」をダウンロードします。
後はダウンロードしたファイル「vs_buildtools__382120230.1571983783.exe」を実行してインストールしていきます。
「続行」をクリックします。
インストールが開始されます。
「C++ Build Tool」にチャックしてインストールしていきます。
チェックがついていない、右下にある「MSCV v140」もインストールします。
インストールが開始されます。かなり時間がかかります。
再起動する必要があるので、再起動を行います。
再起動後に再度、「pip install」を実行するとエラーが解消されていることが確認できました。
-
前の記事
Nuxt.js ライブラリ「vuejs-clipper」を使用して画像をクリッピングする 2020.07.18
-
次の記事
journalctlログを削除する 2020.07.18
コメントを書く