I am trying to download python-docx via pip install python-docx
, but it gives the error
ERROR: Could not find a version that satisfies the requirement python-docx (from versions: none)
ERROR: No matching distribution found for python-docx
Then I tried to download another package Aspose-cells like
pip install aspose-cells
pip install aspose-words
But I get the same error:
ERROR: Could not find a version that satisfies the requirement aspose-words (from versions: none)
ERROR: No matching distribution found for aspose-words
And then I found that this error would appear for any package that I tried to install.
Most of the answers that I found online points to the version being too outdated or OS issues, but I checked the versions – they are both the latest (python 3.12 and pip v24.0). I am on windows. PyPI server has not blacklisted my IP address neither.
What should I do?
Thank you!