andreaconti / ramdepth

Official code for Range-Agnostic Multi-View Depth Estimation with Keyframe Selection (3DV 2024)
44 stars 2 forks source link

got a error when installing" ramdepth-0.1.0-cp310-cp310-linux_x86_64.whl " #2

Open antonyvan opened 3 months ago

antonyvan commented 3 months ago

Hello, Thanks for your code sharing However, I got an error when install ramdepth-0.1.0-cp310-cp310-linux_x86_64.whl It says : ramdepth-0.1.0-cp310-cp310-linux_x86_64.whl is not a supported wheel on this platform."

my platform is ubuntu 18.04, I have been using it for many network training. no issues. Any suggestion? Thanks

andreaconti commented 3 months ago

Hi,

It's probably a problem of naming. pip checks the package name to check python, abi and platform version. You can find the package convention here for reference. It should be fine if you just rename the wheel before installing like

ramdepth-0.1.0-cp310-none-linux_x86_64.whl

If you are using a different version of python (3.10) you can change the python version as well. I tested the package for python 3.10 but you should not have problems with higher versions.

Best, Andrea