Skip to content Skip to sidebar Skip to footer

Python Pip Install Not Finding Requierements Versions

I am using Python 3.7, pip version: 10.0.1, OS: Windows 10 In CMD i am installing dependencies with the command: Python -m pip install requirements.txt But it show this message: C

Solution 1:

You're missing -r flag in your pip install command

Python -m pip install -r requirements.txt

Post a Comment for "Python Pip Install Not Finding Requierements Versions"