abseil/abseil-py

Absl installation problem

alberto-atk opened this issue · 6 comments

Hi!
I have installed all dependencies in the flare_remover app and i have a problem when i run the command.
The enviroment that i'm using:
image
The problem that i get:
image
Thank you!!

yilei commented

Make sure absl-py is really installed, by running python3 -c 'from absl import app'.

Other than this, it doesn't seem to be an issue we can help with on the absl side. Try flare_remover's?

I'm still getting the error
image
And in pip appears that absl is installed

yilei commented

What about python3 -m pip list?

image
This is the output, previously i had this one and i updated pip
image

yilei commented

Yeah your pip and python3 are using different Python installations. And you don't have absl-py (and anything else installed) for whatever python3 points to. You can try pip3 or python3 -m pip whenever you used pip.

Thank you so much
That was the problem!!