Dependencies installation failure in rasa due to Tensor flow - python

Rasa Open Source version
2.4.3
Rasa SDK version
2.8.5
Python version
3.7.5
Python Library : Tensor flow 2.3.4
What operating system are you using?
Operating System: Ubuntu 18.04.6 LTS
Kernel: Linux 5.4.0-1090-oracle
Architecture: arm64
What happened?
During a fresh install of Tensor flow:
ERROR: Could not find a version that satisfies the requirement tensor flow-text<2.4,>=2.3; sys_platform != "win32" (from rasa) (from versions: none)
ERROR: No matching distribution found for tensorflow-text<2.4,>=2.3; sys_platform != "win32"
It does not work even after upgrading the tensor flow to 2.9.0
Upgraded Tensor flow 2.7 but still is giving an error download latest version
Upgrade pip version from 20 to 22 pip version upgrade
pip debug --verbose is giving me error: enter image description here

Related

ERROR: Could not find a version that satisfies the requirement torch (from versions: none)

Python version
C:\Users\donhu>python --version
Python 3.11.0
C:\Users\donhu>
I try install PyTorch, but catch error
ERROR: Could not find a version that satisfies the requirement torch (from versions: none)
I also try with Jupyter lab, and other version of PyTorch (nightly build), but not success.
How to fix it?
From https://pytorch.org/get-started/locally/
Currently, PyTorch on Windows only supports Python 3.7-3.9

Can't get Tensorflow 2.9 on Mac?

I'm trying to build a custom environment for a TF agent but for any modules that I need I get the error:
ImportError: This version of TensorFlow Probability requires TensorFlow version >= 2.9; Detected an installation of version 2.6.3. Please upgrade TensorFlow to proceed.
For !pip install tensorflow --upgradeI get:
Requirement already satisfied: tensorflow in ./opt/anaconda3/lib/python3.9/site-packages (2.6.5)
I also tried !pip install tensorflow-macos because it was suggested on pypi.org but then I get:
ERROR: Could not find a version that satisfies the requirement tensorflow-macos (from versions: none) ERROR: No matching distribution found for tensorflow-macos
If I try to specify 2.9 with !pip install 'tensorflow==2.9' --upgrade that does not work either:
ERROR: Could not find a version that satisfies the requirement tensorflow==2.9 (from versions: 2.5.0, 2.5.1, 2.5.3, 2.6.0rc0, 2.6.0rc1, 2.6.0rc2, 2.6.0, 2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.7.0rc0, 2.7.0rc1, 2.7.0, 2.7.1, 2.7.2, 2.7.3)
ERROR: No matching distribution found for tensorflow==2.9
I also tried all of these in my Mac terminal (with python -m pip...) as well as in VS code terminal but I really can't seem to get the Tensorflow version that I need for the agents and environments …
Ok so apparently, Tensorflow 2.9 is only available on macOSX 10.14 and onward ... yikes

Want to install tensorflow on python version- 3.7.6

I am trying to install tensorflow, but encountered errors like -
Could not find a version that satisfies the requirement tensorflow (from version: none)
No matching distribution found for tensorflow.
My installations are as follows :
Python version= (3.7.6)
Anaconda version =(1.7.2)

ERROR: Could not find a version that satisfies the requirement tensorflow==1.2.1 ? pip cannot find tensroflow 1 versions

I cannot install any tensorflow 1 version in my virtual env.. it is required by a project that I'm trying to run..
pip install tensorflow==1.2.1
ERROR: Could not find a version that satisfies the requirement tensorflow==1.2.1 (from versions: 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.2.1, 2.3.0rc0, 2.3.0rc1, 2.3.0rc2, 2.3.0, 2.3.1, 2.4.0rc0, 2.4.0rc1, 2.4.0rc2, 2.4.0rc3)
ERROR: No matching distribution found for tensorflow==1.2.1
Tried things suggested here :
Tensorflow r1.0 : could not a find a version that satisfies the requirement tensorflow
my python version is not old : 3.8.5
my pip version is OK : 20.0.2
i still CANNOT install tensorflow 1.2.1 ...
what i gotta do.. I am using ubuntu 20
From https://www.tensorflow.org/install/pip:
System requirements:
Python 3.5–3.8
Python 3.8 support requires TensorFlow 2.2 or later.
There are two options:
Use older version of python (3.5-3.7)
Use TensorFlow 2.2 or later

How to fix : ERROR: Could not find a version that satisfies the requirement tensorflow-gpu==1.14.0 (from versions: none)

I am currently having an issue with the installation of the Tensorflow GPU on mac os
I have uninstalled tensorflow 1.14 and trying to install tensorflow 1.14 GPU in order to train a model.
(deepspeech-venv) Chabanis-MacBook-Pro:Deepspeech chabani$ pip3 install 'tensorflow-gpu==1.14.0'
Collecting tensorflow-gpu==1.14.0
ERROR: Could not find a version that satisfies the requirement tensorflow-gpu==1.14.0 (from versions: none)
ERROR: No matching distribution found for tensorflow-gpu==1.14.0
I expected that this would have installed the Tensorflow GPU 1.14 properly. Where am I going wrong here?
According to this there is no GPU support on mac
macOS 10.12.6 (Sierra) or later (64-bit) (no GPU support)
No GPU support on Mac is mentioned also here
There is no GPU support for macOS.

Categories