Home > database >  ERROR: Could not find a version that satisfies the requirement tensorflow-text==2.8.* (from versions
ERROR: Could not find a version that satisfies the requirement tensorflow-text==2.8.* (from versions

Time:07-14

Issue

  • I am trying to run the base text Tensorflow tutorials on my m1 MacBook
  • I have properly installed the new metal based packages guide
  • I get an error when i get t this point in the tutorial

CODE

!pip install -q "tensorflow-text==2.8.*"

ERROR

ERROR: Could not find a version that satisfies the requirement tensorflow-text==2.8.* (from versions: none)
ERROR: No matching distribution found for tensorflow-text==2.8.*

Tried Solutions

CodePudding user response:

I used ConatusEng's answer from https://developer.apple.com/forums/thread/700906

Were you able to run them with the GPU being used? When I run https://www.tensorflow.org/text/tutorials/transformer and https://www.tensorflow.org/text/tutorials/text_classification_rnn although it gives message "Plugin optimizer for device_type GPU is enabled", the GPU is not used

CodePudding user response:

Build TensorFlow Text from source

  • Related