what might be the error causing while running the program - python

i have installed storyboard by following commands
sudo apt update
pip install story board
but in my program there is a line which causes error that is
from storyboard import Coord
ImportError: cannot import name Coord
after this i try to install coordinates with the command
pip install coordinates
But it gave this error
Could not find a version that satisfies the requirement coordinates (from versions: )
No matching distribution found for coordinates
can any help me or suggest what should be done ??

This package might not be available for older pip, try updating pip and then installing it.
Refer to this link for other reasons: Fix the pip error: Couldn't find a version that satisfies the requirement

Related

How to pip install from a private artifactory?

A private artifactory is available. We pushed a Python lib into it using Twine:
/python-XYZ/mylib/version/mylib-version.tar.gz
However, I do not understand how we can get this library using pip install.
I have tried the following (based on this):
pip install mylib==version --index 'https://myuser:mypassword#XYZ-DOMAIN.fr:443/artifactory/api/pypi/python-XYZ/simple
Which gives this:
ERROR: Could not find a version that satisfies the requirement mylib==version (from versions: none)
ERROR: No matching distribution found for mylib==version
The result is the same with the following endpoints:
/artifactory/api/pypi/python-XYZ/mylib/simple
/artifactory/api/pypi/mylib/simple
/artifactory/api/pypi/python-XYZ/simple
Given the location of my library, how can I pip install it ?
After some digging, here is what it should be in my case.
pip install mylib==version --index-url 'https://USERPWD#XYZ-DOMAIN.fr:443/artifactory/api/pypi/python/simple' --trusted-host=XYZ-DOMAIN.fr

Poshmark API - pip install poshmarkapi is not working

When I do:
pip install poshmarkapi
I see below error:
ERROR: Could not find a version that satisfies the requirement poshmarkapi
ERROR: No matching distribution found for poshmarkapi
Note: you may need to restart the kernel to use updated packages.
I tried installing the Poshmark API client for Python using the following command: pip install poshmarkapi.
Can you please let me know how I can resolve this ?
Many thanks
A.T

Pip install troubleshooting - not finding valid distribution

I am trying to install mediapipe with pip in Python 3.10 from MacOS Monterey.
(mp_env_3.10_rosetta) ➜ ~ pip3.10 install mediapipe
ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none)
ERROR: No matching distribution found for mediapipe
I've even downloaded the wheel files, but they tell me that the platform doesn't match when I try to install them. I have tried this with and without Rosetta (since mediapipe is not supported on the APple M1 chip yet), and with all the wheel files.
(mp_env_3.10_rosetta) ➜ ~ pip3.10 install ~/Downloads/MediaPipe/mediapipe-0.8.10-cp310-cp310-macosx_10_15_x86_64.whl
ERROR: mediapipe-0.8.10-cp310-cp310-macosx_10_15_x86_64.whl is not a supported wheel on this platform.
All my teammates, who have the same laptops with the same OS, doing the same thing as I am doing, are not running into this problem. I am totally puzzled.
My main question here is, is there some way to get debugging info from pip to tell why it doesn't think it can find a match? Can I see if it doesn't know my platform, or OS, or Python version?

Why isn't my Python package found when I attempt to install it?

I have tried installing the package invasion_PGF but constantly get the error messages:
Could not find a version that satisfies the requirement invasion_PGF (from versions: none)
and
No matching distribution found for invasion_PGF.
I was installing using the command: pip install invasion_PGF in the Anaconda command prompt.
Can someone help me with ideas on how to deal with this?

I can't install web3 because I've an error with rlp

When I try to install web3 throw pip install web3, I have this error:
Could not find a version that satisfies the requirement rusty-rlp<0.2,>=0.1.15 (from rlp<=2.0.0.alpha-1,>=1.0.0->eth-account<0.6.0,>
=0.5.3->web3) (from versions: none)
This happened to me too. I think PIP can't find a version of the package for Python(32bits). It worked with a 64 bit installation.
Please read my answer here:
Unable to install web3. I get an error saying version does not satisfy requirement rusty-rlp
This appears to be because of the build binaries available for rusty-rlp. There is an issue HERE and a pull request HERE related to this topic. I assume it won't be possible to install on an ARM machine or x32 till this gets resolved, which I assume won't take too long.
Update:
Now pyrlp is used instead or rusty-rlp for ARM and 32-bit devices. So this error should simply no longer be there if you install web3 now.

Categories

Resources