So I am trying to install a python package with pip in my command prompt, but I keep getting this error:
ERROR: Error [WinError 2] The system cannot find the file specified while executing command git clone -q https://github.com/BurntSushi/nflgame.git 'C:\Users\samfe\AppData\Local\Temp\pip-req-build-nbf_m66n' ERROR: Cannot find command 'git' - do you have 'git' installed and in your PATH?
I am following the directions from a git hub post to install it, and it says to use
pip install git+https://github.com/BurntSushi/nflgame.git
to download it. Not sure why the prompt says that I need to install 'git', because that isn't a python package...Let me know if you know how to fix this.
Thanks!!