I use anaconda and I have python 3.7, I tried to install tensorflow_data_validation from anaconda's prompt but it gives me the following error: Could not find a version that satisfies the requirement tensorflow_data_validation (from versions:)
No matching distribution found for tensorflow_data_validation
How can I solve that?
Related
nnsplit looks promising and I'd like to start using it on my PC, but I'm getting the following error when I run pip install nnsplit
ERROR: Could not find a version that satisfies the requirement nnsplit (from versions: 0.0.1, 0.1.0, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.2.0, 0.2.1, 0.2.2)
ERROR: No matching distribution found for nnsplit
I'm using windows 11 and I've tried to install it on Python 3.10.9 and Python 3.11 with no luck
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
Python version = 3.10.1, pip version = 22.2.2 and I'm using VScode version 1.71.2. When I try to install pip install testCases_v2, I get this error
ERROR: Could not find a version that satisfies the requirement testCases_v4 (from versions: none)
ERROR: No matching distribution found for testCases_v4
How can I proceed from here?
I tried downgrading python to 3.6 and upgraded pip yet no changes. This error shows up while downloading Rasa.
ERROR: Could not find a version that satisfies the requirement tensorflow-addons<=0.12,>=0.10 (from rasa) (from versions: none)
ERROR: No matching distribution found for tensorflow-addons<=0.12,>=0.10 (from rasa)
As the error suggests, you have to manually install the correct version of tensorflow-addons before installing rasa.
Try
pip install tensorflow-addons==0.11.2
and then install rasa again
I have python 3.7.4 and want to install MailCorpus using pip.
I use this but I receive error:
>pip install MailCorpus
Collecting MailCorpus
ERROR: Could not find a version that satisfies the requirement MailCorpus (from versions: none)
ERROR: No matching distribution found for MailCorpus
Any problem with version?