If your version is around Python 3.13, first try to reinstall pip, and see if that works. If it doesn't, run this command: pip freeze > requirements.txt
. This command will save the python packages into a text file. Next, go install an older python version (like 3.10-3.11, as said above), and install the adequate pip. Then, run this command: pip install -r requirements.txt
, and it should, at the very least, help. I hope this fixes the problem with your pip.