皆さん、こんにちは!
調子はいかがでしょうか??
さてさて、今回はですね。。
pipインストール関連のエラーです。
このブログでもあまりpipのエラーは取り上げてないかもしれないですね。
エラー内容
わたしが遭遇したエラー内容は以下の通りです。
Command ['/root/.pyenv/versions/3.8.2/bin/python3', '-m', 'pip', 'install', '--no-deps', '/root/.cache/.../lxml-4.6.3-cp38-cp38-manylinux2014_x86_64.whl'] errored with the following return code 1, and output:
ERROR: lxml-4.6.3-cp38-cp38-manylinux2014_x86_64.whl is not a supported wheel on this platform.
WARNING: You are using pip version 19.2.3, however version 21.1.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
解決方法
これも単純で。。
上のエラー内容に書いてある通りに、以下コマンドを実行したら解決しました!
python -m pip install --upgrade pip
少しでも皆様の時間の節約になることを祈って。
ではでは!
参考
Error "filename.whl is not a supported wheel on this platform"
I would like to install scipy-0.15.1-cp33-none-win_amd64.whl that I have saved to the local drive. I am using: pip 6.0.8 from C:\Python27\Lib\site-packages pyth...