how to get older version of setuptools #4354
-
environment: Python 3.11.9 venv on Alpine Linux I'm installing a package. The latest setuptools already removed It seems that pip install doesn't use installed setuptools ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Have you tried pinning the version in (The |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
OK, in that case I suppose you can try
pip install --no-build-isolation --no-use-pep517 ...
. You will also need to install all build dependencies manually, that includeswheel
.But if the package is that old and relies on a very old version of
setuptools
, there is a chance you need an old version ofpip
to make it work too.