Closed nikitatishin5 closed 3 years ago
You can find it at https://pypi.org/project/mediapipe.
I having some error in "Ubuntu 18.04.1"
Creating a virtual environment name "env"
python3 -m venv env
source env/bin/activate
Installing mediapipe
(env) $ pip install mediapipe
Collecting mediapipe
Could not find a version that satisfies the requirement mediapipe (from versions: )
No matching distribution found for mediapipe
@MaRauder111, what's your python version?
My python version was 2. I have upgrade my python.
Before
$ python --version
Python 2.7.0
Now
$ python --version
Python 3.7.9
I have install mediapipe.
Thank you @jiuqiant . I totally forget to check about the python version. My bad.
You are welcome!
Also note that pip install will currently not work with versions >= 3.9
I am getting the same error as MaRauder111 on Ubuntu 20.04:
(env) ubuntu@ubuntu:~\/mediapipe$ python --version Python 3.8.5 (env) ubuntu@ubuntu:~\/mediapipe$ pip install mediapipe ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none) ERROR: No matching distribution found for mediapipe
Anyone know a fix?
I am getting the same error as MaRauder111 on Ubuntu 20.04:
(env) ubuntu@ubuntu:~/mediapipe$ python --version Python 3.8.5 (env) ubuntu@ubuntu:~/mediapipe$ pip install mediapipe ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none) ERROR: No matching distribution found for mediapipe
Anyone know a fix?
I update my python to 3 and it work fine for me.
I am getting the same error as MaRauder111 on Ubuntu 20.04: (env) ubuntu@ubuntu:~/mediapipe$ python --version Python 3.8.5 (env) ubuntu@ubuntu:~/mediapipe$ pip install mediapipe ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none) ERROR: No matching distribution found for mediapipe Anyone know a fix?
I update my python to 3 and it work fine for me.
I tried that and got the following:
ubuntu@ubuntu:~$ python3 -m venv env ubuntu@ubuntu:~$ source env/bin/activate (env) ubuntu@ubuntu:~$ python --version Python 3.8.5 (env) ubuntu@ubuntu:~$ pip install mediapipe ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none) ERROR: No matching distribution found for mediapipe
any ideas?
**I have python 3.8.3 version but I can't install mediapipe it's shows me Could not find a version that satisfies the requirement mediapipe
@mayank6940 I gat this, too, i have python 3.8.5
@gamersi install python 3.7 version then you will not get any error
@gamersi install python 3.7 version then you will not get any error
Ok I will try it later
@mayank6940 I am now using the 3.7.9 version with PIP 21.0.1, I deleted 3.8 and i still get the same error
Like this:
Hi - Same issue. tried on python from 3.2 to 3.9 (The image is on 3.7) Same as with anaconda...
Hi - Same issue.
tried on python from 3.2 to 3.9 (The image is on 3.7)
Same as with anaconda...
I still didn't find a solution - python makes problems everytime
Hi - Same issue. tried on python from 3.2 to 3.9 (The image is on 3.7) Same as with anaconda...
I still didn't find a solution - python makes problems everytime
I think "python37-32" means 32-bit ? Your pip is for the 32-bit version of Python? You need the 64-bit version of Python 3.7+ with pip to install mediapipe...
If you get: ERROR: Could not find a version that satisfies the requirement mediapipe ERROR: No matching distribution found for mediapipe when trying "pip install mediapie"
Try "py -m pip install mediapie" insted, worked for me on windows!
it didn't worked for me it says py is not recognised as an internal or external command
pls help
it didn't worked for me it says py is not recognised as an internal or external command
py is probably an alias to the local python 3.7+ binary. Also see the sys requirements at https://github.com/google/mediapipe/blob/master/docs/getting_started/troubleshooting.md#python-pip-install-failure.
Hey guys !! those of u who are not able to install mediapipe and it's showing error like this "No matching distribution found for mediapipe" ; install python 3.7.0 not 3.7.4 not 3.8 , Python 3.7.0 link: https://www.python.org/downloads/release/python-370/
I had 3.7.4 but I was not able to install mediapipe , but I changed my path and installed 3.7.0 and now it's working just fine for me Hope it helped , luck!! :)
I am trying pip install mediapipe but I am getting an error. ERROR: could not find a version that satisfies the requierement mediapipe. no matching distribution found for mediapipe.
I am trying pip install mediapipe but I am getting an error. ERROR: could not find a version that satisfies the requierement mediapipe. no matching distribution found for mediapipe.
I have python version 3.7.6 still it shows ERROR: could not find a version that satisfies the requierement mediapipe. no matching distribution found for mediapipe.
I have python version 3.7.6 still it shows ERROR: could not find a version that satisfies the requierement mediapipe. no matching distribution found for mediapipe.
What's your OS? Have you checked that your python 3.7.6 and pip binary are the 64-bit version?
Yes I downloaded the 64 bit version of python 3.7.6 and finally medipipe is installed. Thank you!
I am trying pip install mediapipe but I am getting an error. ERROR: could not find a version that satisfies the requirement mediapipe. no matching distribution found for mediapipe.
Thanks, I got to know that it needs python to be 64 bit
Hello guys, i'm having the same problem as others: ERROR: Could not find a version that satisfies the requirement mediapie (from versions: none) ERROR: No matching distribution found for mediapie I have Python 3.8.5 running on a 64 bits System , i don't know what to do
Hey guys !! those of u who are not able to install mediapipe and it's showing error like this "No matching distribution found for mediapipe" ; install python 3.7.0 not 3.7.4 not 3.8 , Python 3.7.0 link: https://www.python.org/downloads/release/python-370/
I had 3.7.4 but I was not able to install mediapipe , but I changed my path and installed 3.7.0 and now it's working just fine for me Hope it helped , luck!! :)
This exactly worked for me too. I downloaded python 3.7 and created a virtualenv with 3.7. virtualenv venv --python=python3.7.0
Hello guys, i'm having the same problem as others: ERROR: Could not find a version that satisfies the requirement mediapie (from versions: none) ERROR: No matching distribution found for mediapie I have Python 3.8.5 running on a 64 bits System , i don't know what to do
install python 3.7 because mediapipe only works on python 3.7...
Below worked successfully for me on Ubuntu 18.04:
$ sudo apt update
$ sudo apt install software-properties-common
$ sudo add-apt-repository ppa:deadsnakes/ppa
$ sudo apt update
$ sudo apt install python3.9 python3.9-venv
$ python3.9 -m venv mp && source mp/bin/activate
$ python -m pip install --upgrade pip
$ pip install mediapipe
Collecting mediapipe
Downloading mediapipe-0.8.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.2 MB)
(mp) $ python
>> import mediapipe
>> print(mediapipe.__file__)
>> print(mediapipe.solutions)
>> exit()
for Ubuntu 18 you have to just upgrade your pip with the following command
python -m pip install --upgrade pip
pip install mediapipe
for Ubuntu 18 you have to just upgrade your pip with the following command
python -m pip install --upgrade pip
pip install mediapipe
Guys, python version does not matter too much. Check @adamanov comments. If you upgrade your pip version it should be fine. Thanks Adam
Help :(
Windows 11
Help :(
Windows 11
Python 3.10 is not supported by Mediapipe yet. Please use Python 3.7 to 3.9.
Refiz toda a configuração do python e voltei para versão 3.10 para 3.7, e a mesma foi instalada com sucesso.
ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none) ERROR: No matching distribution found for mediapipe
Using Python 3.10 on windows 10 Command used : python -m pip install mediapipe
Anyone got a fix ?
Edit : It works on Python 3.7 and Google Collab
the best practice I know is to :
so I can't download mediapipe in python 3.10
Help :( Windows 11
Python 3.10 is not supported by Mediapipe yet. Please use Python 3.7 to 3.9.
Same problem :)
Help :( Windows 11
Python 3.10 is not supported by Mediapipe yet. Please use Python 3.7 to 3.9.
Same problem :)
Tried python 3.7.9. Was able to install mediapipe., but numpy and cv2 went invalid and could not be used my previous codes.
I tried downgrading from v3.10 to v3.7 and it successfully installed.
Guys, just type enter this "pip install mediapipe==0.8.9" to bash or cmd.
Updated to python 3.8, can't download it even @edulayernet solution, no worky.
I am using Ubuntu 18.04. Tried python 3.7.5 and 3.8.0, but pip install mediapipe doesn't work. Says no matching distributions found. Building from source also failed. Then I installed python 3.7.9 and pip install worked! I guess the compatibility is specifically with python 3.7.9
i use python 3.10.0 i cant install mediapipe, is there any answer for this?
I just realized I was using python 32bit, after I switched from Python 32bit to 63bit, Mediapipe should work from Python 7 to 9 64bit.
C:\Users\Alison>python --version Python 3.10.0
C:\Users\Alison>pip install mediapipe ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none) ERROR: No matching distribution found for mediapipe
C:\Users\Alison> same problem :( help
I cant install mediapipe in Python There is no such a package