ModuleNotFoundError: No module named 'absl'
I am encountering a problem with the module "absl", i tried installing it in 3 different machines, i tried multiple python version, nothing i am always encountering this problem : "ModuleNotFoundError: No module named 'absl'", any suggestion? Thanks in advance!
at which line are you getting this error? Code is tested on python 3.5.
@LucaSalesi98 Hey, I faced this issue as well. Please note that you might have to install requirements.txt for the specific version of python you are intending to use. I'd suggest 3.5 as I didn't have much success with any other version really.
I was able to manually install absl by:
py -3.5 -m pip install --user absl-py
I am in a Windows 10 environment throught PowerShell and not using WSL. Since I have multiple Python versions installed, I opted to use the py launcher. By running py -3.5 I specify I want to run version 3.5.
However, even if you get this running, I am having issues with the module opendr. I can't get it installed successfully ...