解决ModuleNotFoundError: No module named ‘tensorflow_datasets‘

insert image description here

Traceback (most recent call last):
  File "E:/Code/PyCharm/TensorFlow学习/Keras/迁移学习和微调.py", line 14, in <module>
    import tensorflow_datasets as tfds
ModuleNotFoundError: No module named 'tensorflow_datasets'

Solution

pip install      tensorflow-datasets      -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

Guess you like

Origin blog.csdn.net/m0_47256162/article/details/122301152