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
Related
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 am trying to install all the required packages of the project from requirement.txt but I get lot of similar errors like I am using python 3.9.1
ERROR: Could not find a version that satisfies the requirement conda==4.8.4 (from versions: 3.0.6, 3.5.0, 3.7.0, 3.17.0, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.5, 4.0.7, 4.0.8, 4.0.9, 4.1.2, 4.1.6, 4.2.6, 4.2.7, 4.3.13, 4.3.16)
ERROR: No matching distribution found for conda==4.8.4
also there are package name like
backports.functools-lru-cache # file:///tmp/build/80754af9/backports.functools_lru_cache_1605305165209/work
how to install these kind of packages ?
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 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?
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?