Issue with installing ethnicolr package - python

When I try to install ethnicolr, received an error
"Could not find a version that satisfies the requirement tensorflow==1.12.3(from ethniclor)"
Current version of tensorflow is 1.14, uninstalled it, and tried to install the version of 1.12.3 but get error complaining that could not find a version.
is there anyway to install the package?

One solution is to install a previous version of ethnicolr
pip install ethnicolr==0.2.0
https://github.com/appeler/ethnicolr/issues/16

Related

can't install mediapipe? python 3.8

I have tried to use pip install mediapipe, and other similar methods of pip install to install mediapipe as i need it for one of my projects. I am stumped and don't know what to do anymore. I have python 3.8 and the latest version of pip.
This is the error I keep getting:
ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none)
ERROR: No matching distribution found for mediapipe
you can specify the specific version of the lib
such as:
pip install mediapipe==0.8.9.1 (the version which you want.)
You have to change the python version to 3.7 with 64bit then only you can install it
if you can create a virtual environment for it as well so that will do great

cannot install pip install torchvision

I am using python 3.8.3 version, I tried to install torchvision and torch module and faced this error, none of them are installed. The error comes as ERROR:could not find a version that satisfies the requirement torch==1.4.0(from versions:0.1.2,0.1.2,post1,0.1.2.post2)
Error:No matching distribution found for torch==1.4.0
According to PyTorch's website, you must specify if you are using cpu or the version of CUDA when installing from pip.
For instance, if I wanted to install on a Linux system without CUDA, version 1.5.1 of PyTorch, I would run:
pip install torch==1.5.1+cpu torchvision==0.6.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
You can use the link I provided above to get the syntax for your specific environment.

python: pip install opencv-python give me error

I am install python 3.8.0v and run pip install opencv-python its give me error.
ERROR: Could not find a version that satisfies the requirement opencv-python (from versions: none)
ERROR: No matching distribution found for opencv-python
It seems opencv does not work on Python 3.8 yet, see this issue: https://github.com/skvark/opencv-python/issues/253
You can also refer to this question also Similar Question
What you can also try is installing opencv-contrib-python using pip.I have used the above solutions earlier and they worked for me in Python 3.5.1.They might also work for Python 3.7
Try to install the latest version of python. Or u can upgrade your pip ...
Or try installing opencv-contrib-python using pip.

I am getting pip version upgrade message while installing pygmaps

I am getting this error while installing pygmaps package in pycharm.
Could not find a version that satisfies the requirement pygmaps (from versions: )
No matching distribution found for pygmaps
You are using pip version 10.0.1, however version 19.1.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
I have already upgraded pip version to 19.1.1, but still showing this error.
pip install git+https://github.com/thearn/pygmaps-extended can you try this one ?
if it doesnt work
https://code.google.com/archive/p/pygmaps/downloads go to this link and download it manually and add to your site-packages

Tensorflow will not install

Trying to install tensorflow but no matter the method an error installing it always shows
I have tried installing the whl and I have installed the virtualenv
C:\Windows\system32>pip3 install --upgrade tensorflow
I get this error:
Collecting tensorflow ERROR: Could not find a version that satisfies
the requirement tensorflow (fro m versions: none) ERROR: No matching
distribution found for tensorflow
I would hope that tensorflow would install from any of the methods I have tried but I have gotten an incompatible whl error and the error shown above.
Try this:
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
I've used this before. Tell me if it works! =)
You may try to install using link in anaconda -
https://anaconda.org/conda-forge/tensorflow
Had the same problem till I figured out that you need python 3.5.2 for tensorflow, could not install it in 3.6

Categories