pypa / packaging-problems

An issue tracker for the problems in packaging
151 stars 35 forks source link

pip install not finding my package despite it being available on pypi #601

Closed bjthorpe closed 2 years ago

bjthorpe commented 2 years ago

Problem description

Hi I wrote a python package CudaVox and have published it on pypi https://pypi.org/project/CudaVox/ however despite this if i run: pip install CudaVox I get back ERROR: Could not find a version that satisfies the requirement CudaVox (from versions: none) ERROR: No matching distribution found for CudaVox So it appears that pip can't find any version of the package despite there being two available (V1.5.6 and 1.5.7).

merwok commented 2 years ago

There is no sdist published, and only one wheel for cpython3.6 + manylinux2014 + x86_64 cpu

What are the characteristics of the OS where you are running pip? If they don’t match the wheel’s constraints, then pip sees no usable version.

bjthorpe commented 2 years ago

yep that explains it thanks I built it for X86 linux python 3.6 and the machine I'm trying to install it on is using python 3.8 so I will rebuild it.