[Tutor] Pip is giving me issues
Peter Otten
__peter__ at web.de
Tue Apr 10 07:16:14 EDT 2018
4bar wrote:
> I keep getting the error message below. Any suggestions?
> Joshs-MacBook-Pro:instabot.py-master Yoshi$ ls
>
> ISSUE_TEMPLATE.md README.md requirements.txt
> Joshs-MacBook-Pro:instabot.py-master Yoshi$ pip install -r requirements
>
> Could not open requirements file: [Errno 2] No such file or directory:
> 'requirements'
The error message seems pretty clear; looks like you must provide the file
extension:
$ pip install -r requirements.txt
More information about the Tutor
mailing list