25077667 / standalone-python

A portable standalone python for all Linux platform
Other
29 stars 9 forks source link

can't install a lot of modules, like PySide6, torch, opencv-python, imutil, matplot, etc #8

Open hradec opened 2 weeks ago

hradec commented 2 weeks ago

It seems this standalone-python is not able to install a lot of packages.

First I couldn't install anything, as most of the packages I need where not found with the standard pip.

After running this: curl -sS https://bootstrap.pypa.io/get-pip.py | ./standalone-python-3.12/bin/python3

I was able to install some packages correctly.

But with PySide6, torch and open3d, I got the ERROR: Could not find a version that satisfies the requirement right away.

With others, they simply fail to install because of error: subprocess-exited-with-error... and it seems to be related with pkgutil, since they all have this AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'? message.

I tried --force-reinstall setuptools to update it, same result.

Is this a known issue?