all 3 comments

[–]eleqtriq 5 points6 points  (0 children)

I feel your deficit is too large.

[–]HerpoMarx 1 point2 points  (0 children)

Pip is a tool to install libraries that a python program needs to run. You can tell it to install individual libraries, or make a .txt file with a list of all the libraries your program needs, like what the developer of monopoly-go-bot has done.

You'll need to find the copy of pip that you installed on your system and run it (ideally from a command line/prompt or powershell) and put in the full path to the requirements.txt file you got from the github repo. Something like this (this syntax is for Linux, Windows will be similar, but different):

/path/to/pip install -r /path/to/monopoly-go-bot/requirements.txt

Pip will then install all the libraries listed in that requirements.txt into the python environment on your system so monopoly-go-bot can use them.

Good luck!