google-research / mixmatch

Apache License 2.0
1.14k stars 163 forks source link

ModuleNotFoundError: No module named 'libml' #1

Closed varunnair18 closed 5 years ago

varunnair18 commented 5 years ago

Thank you for putting together this repository of Mixmatch, I enjoyed reading the paper. Upon trying to follow your installation, I ran into the following error: image

I haven't been able to find an installation of libml available through anaconda or pip, what would you recommend I do?

Thanks!

david-berthelot commented 5 years ago

Hello, this is because you need to setup your python path to accept the root of the project:

export PYTHONPATH=$PYTHONPATH:.

I update the README to account for your question, let me know if it's clear now.

varunnair18 commented 5 years ago

That did the trick, thank you for the help!