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.
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 thisAttributeError: 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?