Issue
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:
- OS: Windows 10
- Environment: Conda (miniconda3)
- Python: 3.10.8
- Tensorflow: 2.11
I've tried pip and conda-forge
Solution
As per their note, they have dropped building for Windows with v2.11.0. So, you'll need to build from source or seek a third-party build.
Answered By - merv
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.