-1

My Python version is 3.7.0 version

To import tensorflow_datasets,

import tensorflow_datasets

I ran the code, but:

ImportError: cannot import name 'auto' from 'tqdm'

So, how can I import the auto? When I searched the auto library:

ERROR : Could not find a version that satisfies the requirement auto
ERROR : No matching distribution found for auto

I trying to look for auto library at anaconda environment. But I can't find the same name 'auto' exactly. Which library does 'auto' belong to?

CoffeeTableEspresso
  • 2,614
  • 1
  • 12
  • 30
jihye na
  • 21
  • 3

1 Answers1

-1

As far as I know, it's from tqdm, which I've only ever used for progress bars. In the tqdm GitHub, they import something from tqdm.auto. Also, running from tqdm import auto works for me, so I'm guessing it's from there.