반응형
상황 설명
HMR human mesh recovery 논문을 보고 github에서 해당 코드를 실행하고자 합니다.
https://github.com/akanazawa/hmr
akanazawa/hmr
Project page for End-to-end Recovery of Human Shape and Pose - akanazawa/hmr
github.com
초반 venv 환경에서 $pip install -r requirements.txt 를 통해 여러 모듈을 설치하는 과정에서
'x86_64-linux-gnu-gcc' failed with exit status 1를 보신 적이 있으실 겁니다!
해결 방법
이런 경우 아래와 같은 방법으로 해결할 수 있습니다.
$ sudo apt-get install python-dev
$ sudo apt-get install libffi-dev
첫 번째 명령으로 해결할 수 있지만 혹시 안 된다면 두 번째 명령도 실행해보세요!
반응형