DuncanZauss / Keypoint_Communities

[ICCV '21] In this repository you find the code to our paper "Keypoint Communities".
MIT License
268 stars 17 forks source link

Error while installing openpifpaf #5

Closed samymdihi closed 1 year ago

samymdihi commented 3 years ago

While running the requirements.txt I got stuck on an issue regarding openpifpaf==0.13.0. It seems like the version cannot be found. Do you have a way to bypass that ?

samymdihi commented 3 years ago

I just removed the version specification and it worked

DuncanZauss commented 3 years ago

Could you specify which OS and python version you are using? Only the newest openpifpaf version (0.13.0) includes a C++ implementation of the decoder which is crucial for a high inference speed. You can check your openpifpaf version with python -m openpifpaf.train --version.

samymdihi commented 3 years ago

I am on windows 10, python 3.9 and the installed openpifpaf version is 0.12.14

DuncanZauss commented 2 years ago

I see. Could you try to install OpenPifPaf from source? I.e. git clone OpenPifPaf and then run the following command in the folder where the setup.py file is:

pip install -e .

Also for openpifpaf 0.13.0 you need to make sure that you have a C++ compiler installed.