while installing requirements of this github repo:-
https://github.com/sentient-bread/CL-Project2
I am shown this error:-
ERROR: Could not find a version that satisfies the requirement isc_parser (from versions: none)
ERROR: No matching distribution found for isc_parser
i tried installing it using:-
pip install isc_parser and pip3 install isc_parser
Related
I'm installing tensorflow. My system has the following specifications:
py --version
Python 3.8.2
I tried the following commands to install tensorflow module
py -m pip install --upgrade tensorflow
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
py -m pip install tensorflow==2.2
ERROR: Could not find a version that satisfies the requirement tensorflow==2.2 (from versions: none)
ERROR: No matching distribution found for tensorflow==2.2
py -m pip install tensorflow==2.2.0
ERROR: Could not find a version that satisfies the requirement tensorflow==2.2.0 (from versions: none)
ERROR: No matching distribution found for tensorflow==2.2.0
What can I do to install this successfully on my machine?
TensorFlow supports only 64-bit system architecture. Hence it shows compatibility issue in 32-bit and no matching distribution found.
I am trying to use 'pipenv' on Windows Subsystem for Linux (ubuntu 18.04)
When I run
$ pipenv sync
I am getting this error :
[pipenv.exceptions.InstallError]: ['ERROR: Could not find a version that satisfies the requirement
tensorflow==2.1.0 (from -r /tmp/pipenv-gy0uz1a7-requirements/pipenv-glre38t7-requirement.txt (line 1))
(from versions: 2.2.0rc1, 2.2.0rc2)', 'ERROR: No matching distribution found for tensorflow==2.1.0
(from -r /tmp/pipenv-gy0uz1a7-requirements/pipenv-glre38t7-requirement.txt (line 1))']
I followed some other instructions that say I have to install tensorflow, so I installed tensorflow
$ pip install --upgrade pip
$ pip install tensorflow==2.1.0
Even after installing tensorflow 2.1.0 I am still getting the same error when I run
$ pipenv sync
What should I do to fix this problem?
Check your python version, the python 3.8 doesn't support TensorFlow 2.1 version.
I am trying to install dabl package and it throws the following error:
pip install dabl
Collecting dabl
Could not find a version that satisfies the requirement dabl (from versions: )
No matching distribution found for dabl
Combined comments from James and hoefling.
There is no package called "dabl" on the PyPi index. That package is still under development on GitHub. You will need to clone the repo and install from the local source. Or install via
pip install git+https://github.com/amueller/dabl/
I am trying to instal pygmaps for my Python 3.5:
pip install pygmaps
I am getting this message:
Could not find a version that satisfies the requirement pygmaps (from versions: ) No matching distribution found for pygmaps
You tried to install the old version of pygmaps. Here the newest https://github.com/thearn/pygmaps-extended
For installing from git use this command:
pip install git+https://github.com/thearn/pygmaps-extended
pip downloads from PyPI and there is nothing to download from https://pypi.python.org/pypi/pygmaps
Go to https://code.google.com/archive/p/pygmaps/downloads, download pygmaps-0.1.1.tar.gz, unpack it and install.
i tried to install pywin32 in Pycharm and in cmd with "pip install pywin32" and i got that massage:
Could not find a version that satisfies the requirement pywin32 (from versions: )
No matching distribution found for pywin32