0

I want to fully download this package, which I downloaded from the GitHub website, but I do not know how to run this package. There is no file named [setup.py] in the package that came with the command [python setup.py install] I install it and when I download a package from the GitHub website, how should we run that package? What order does it mean? How to run on a Windows system when we download a Python package that we download from the GitHub website? How to run the whole download package? Please explain in full The address of the packet download in the GitHub: https://github.com/ironman5366/W.I.L.L Help me please Thank you

1 Answers1

1

As FlyingTeller and mgracer pointed out in the comments, the github repo is not a python package, and thus can not be installed as a package. It's a flask server, which you can download and run on your local machine.

Without having looked too closely at it, the will.py script seems to be the one running the server. Try downloading and running it like a normal python script:

python will.py
Plasma
  • 1,903
  • 1
  • 22
  • 37