Unable to install using pip install requirements.txt [closed] Unable to install using pip install requirements.txt [closed] python python

Unable to install using pip install requirements.txt [closed]


The correct command is pip install -r requirements.txt. Note the -r option; without it, pip thinks you want to install a package named requirements.txt, which doesn't exist.


You forgot to add -r switch to specify that requirements.txt is the file with your dependencies.