No module named ‘absl’ error when I import tensorflow

This was caused by a Python version issue for me. I had the absl package installed on my Python 2.x, but my Python 3.x didn’t have it. So I just made sure that both Pythons on my machine had the package installed:

pip install absl-py
pip3 install absl-py

Leave a Comment