While attempting to install tensorflow_datasets via: pip install -q tensorflow_datasets, I receive the error, "tensorflow-metadata 0.25.0 requires absl-py<0.11,>=0.9, but you'll have absl-py 0.11.0 which is incompatible."
I was able to resolve the issue by reinstalling an older version of absl-py: pip install --upgrade --force-reinstall absl-py==0.10.0.
While attempting to install tensorflow_datasets via:
pip install -q tensorflow_datasets
, I receive the error, "tensorflow-metadata 0.25.0 requires absl-py<0.11,>=0.9, but you'll have absl-py 0.11.0 which is incompatible."I was able to resolve the issue by reinstalling an older version of absl-py:
pip install --upgrade --force-reinstall absl-py==0.10.0
.