CMU-TBD / SocNavBench

A Grounded Simulation Testing Framework for Evaluating Social Navigation: https://arxiv.org/abs/2103.00047
MIT License
34 stars 6 forks source link

`pyassimp.errors.AssimpError: assimp library not found` #14

Closed ericaweng closed 2 years ago

ericaweng commented 2 years ago

I'm trying to set up the environment (INSTALLATION.md), and I get an error when running PYOPENGL_PLATFORM=egl PYTHONPATH='.' python tests/generate_traversibles.py to generate map files:

File ".../.miniconda3/envs/socnavbench/lib/python3.6/site-packages/pyassimp/core.py", line 38, in AssimpLib
    load, load_mem, export, release, dll = helper.search_library()
  File ".../.miniconda3/envs/socnavbench/lib/python3.6/site-packages/pyassimp/helper.py", line 245, in search_library
    raise AssimpError("assimp library not found")
pyassimp.errors.AssimpError: assimp library not found

I'm wondering if you have ever come across this error? Could it be a problem with pyassimp or the conda env library structure? Thanks so much.

GustavoSilvera commented 2 years ago

Hmm. Did you install libassimp-dev? This should allow you to have the assimp library on Linux.

ericaweng commented 2 years ago

Yes, this worked, thank you! I apologize, I must have missed that line in the README.