[Answered ]-Why do I get error "Could not find a version that satisfies the requirement scipy==1.5.3" when running "pip install -r requirements.txt"?

0👍

I installed Python 3.8 instead. It had to do with incompatibility between the Python- and scipy versions. After that it worked.

1👍

Inside your requirements.txt change scipy line with this
scipy==1.6.0 and save.
Now retry pip installation.

Leave a comment