Home > Mobile >  Can't install tensorflow-text~=2.11.0
Can't install tensorflow-text~=2.11.0

Time:12-01

I got a warning something like

warnings.warn(
No local packages or working download links found for tensorflow-text~=2.11.0
error: Could not find suitable distribution for Requirement.parse('tensorflow-text~=2.11.0')

and if I run pip install 'tensorflow-text~=2.11.0' I got :

ERROR: Could not find a version that satisfies the requirement tensorflow-text~=2.11.0 (from versions: 2.8.1, 2.8.2, 2.9.0rc0, 2.9.0rc1, 2.9.0, 2.10.0b2, 2.10.0rc0, 2.10.0)
ERROR: No matching distribution found for tensorflow-text~=2.11.0

tensorflow-text 2.11.0 available on pypi

and if I run pip install tensorflow-text it installs tensorflow-text 2.10.0 and downgrade the whole tensorflow to 2.10.0

Version Info:

  1. OS: Windows 10
  2. Environment: Conda (miniconda3)
  3. Python: 3.10.8
  4. Tensorflow: 2.11

I've tried pip and conda-forge

CodePudding user response:

I think you should run

pip install tensorflow-text==2.11.0

without any quotes or swung dash

CodePudding user response:

Install directtly. The latest version of tensorflow-text is 2.11.0 _pypi

pip install tensorflow-text
  • Related