前提・実現したいこと
Anaconda3のspyderにdlibをインストールしたいですが、以下のエラー文が出力されます。
発生している問題・エラーメッセージ
ERROR: Command errored out with exit status 1: 'C:\ProgramData\Anaconda3\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\aaaaaaa\AppData\Local\Temp\pip-install-159kj4gq\dlib_ad3dd9ccd5034a838a9eade927ce5360\setup.py'"'"'; file='"'"'C:\Users\aaaaaaa\AppData\Local\Temp\pip-install-159kj4gq\dlib_ad3dd9ccd5034a838a9eade927ce5360\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\aaaaaaa\AppData\Local\Temp\pip-record-symr1dxr\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\ProgramData\Anaconda3\Include\dlib' Check the logs for full command output.
該当のソースコード
Python
python -m pip install -U pip dlib==19.19
試したこと
python -m pip install -U pip dlib==19.19
とした結果、上記のエラーが発生しました。
また、
conda install -c menpo dlib
では、
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:
- dlib -> python[version='2.7.|3.4.|3.5.*']
Your python: python=3.8
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.
と出力されたので、Pythonのダウングレードを行いましたが、version3.5.9がなかったため、断念しました。
補足情報(FW/ツールのバージョンなど)
windows10
Python 3.8.5
pip 20.3.1
回答1件
あなたの回答
tips
プレビュー