NVlabs / dex-ycb-toolkit

A Python package that provides evaluation and visualization tools for the DexYCB dataset
https://dex-ycb.github.io
GNU General Public License v3.0
149 stars 25 forks source link

pyglet 2.0.9 requires Python 3.8 or newer. #37

Closed samlim134 closed 11 months ago

samlim134 commented 11 months ago

Hi, thank you for the work. I am facing some problem while running the python examples/visualize_pose.py code. I built my virtual environment with Python 3.7 as the code was tested with Python 3.7, and everything I have cloned from the github is built into this same virtual environment. However, I am getting the error "pyglet 2.0.9 requires 3.8 or newer.". What should I do?

ychao-nvidia commented 11 months ago

You can try downgrading pyglet:

pip install pyglet==1.5.27
samlim134 commented 11 months ago

Hi, thank you so much for the fast reply. It is working perfectly now!