【tf-pose-estimation】requirements.txtのpip3 install ができない
2705 ワード
概要
骨格推定のライブラリで有名な「tf-pose-estimation」を利用する際にrequirements.txtに書かれているモジュールをインストールする際にかなり詰まったのでメモ。
事象
https://qiita.com/ikekou/items/9a632b10588b423db172
上記の手順のなかで「pip3 install -r requirements.txt」
でエラーになる。
エラーログ
・・・省略・・・
Collecting pycocotools
Downloading https://files.pythonhosted.org/packages/96/84/9a07b1095fd8555ba3f3d519517c8743c2554a245f9476e5e39869f948d2/pycocotools-2.0.0.tar.gz (1.5MB)
|████████████████████████████████| 1.5MB 2.5MB/s
ERROR: Command errored out with exit status 1:
command: /usr/local/opt/python/bin/python3.7 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/setup.py'"'"'; __file__='"'"'/private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/pip-egg-info
cwd: /private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/
Complete output (5 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/setup.py", line 2, in <module>
from Cython.Build import cythonize
ModuleNotFoundError: No module named 'Cython'
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
・・・省略・・・
Collecting pycocotools
Downloading https://files.pythonhosted.org/packages/96/84/9a07b1095fd8555ba3f3d519517c8743c2554a245f9476e5e39869f948d2/pycocotools-2.0.0.tar.gz (1.5MB)
|████████████████████████████████| 1.5MB 2.5MB/s
ERROR: Command errored out with exit status 1:
command: /usr/local/opt/python/bin/python3.7 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/setup.py'"'"'; __file__='"'"'/private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/pip-egg-info
cwd: /private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/
Complete output (5 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/private/var/folders/9r/s1rktt555mdgy44wfqx5kg780000gp/T/pip-install-x_yvzfkm/pycocotools/setup.py", line 2, in <module>
from Cython.Build import cythonize
ModuleNotFoundError: No module named 'Cython'
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
ログ的には「Cythonのモジュールがないかからインストールしてね」っていってるんだけど、他にも色々と対応が必要だった。
解消方法
Cythonのインストールも合わせて以下の手順を実施したところ解消した。
$ brew install pyenv
$ pyenv install 3.6.5
$ pyenv global 3.6.5
$ eval "$(pyenv init -)"
$ pip install --upgrade pip
$ pip install --upgrade cython
Author And Source
この問題について(【tf-pose-estimation】requirements.txtのpip3 install ができない), 我々は、より多くの情報をここで見つけました https://qiita.com/ffrr55s/items/411b4da70d9231b543b9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .