Detergent13 / tft-bot

Automate Teamfight Tactics (TFT) for token/mission farming. Updated for Set 11!
GNU Affero General Public License v3.0
81 stars 45 forks source link

Installation video? #47

Closed steffenhengst closed 2 years ago

steffenhengst commented 3 years ago

Hello,

would it be possible to create an installation video? Have no experience with Python until now and understand the instructions as a layman unfortunately not. You would help me a lot with an explanatory video!

Thanks in advance.

src52 commented 3 years ago

Download and install Python version 3.8.3.

Download this repository as a ZIP, and extract it.

Open the directory in your terminal/command line. Run the commands that the readme specifies.

The readme lets you know exactly what you need to do. What part are you confused about?

You're not actually writing any Python code here, just executing a pre-made script.

Detergent13 commented 2 years ago

I probably won't make an installation video in all honesty- not really my area of expertise. Definitely happy to feature a video if anybody does want to make one though! Hope you figured out the installation eventually.

jo5000 commented 2 years ago

Hey, these instructions seem very simple and I am sorry but I really have no idea on what I'm doing wrong. The part that confuses me most is navigating/opening the install directory in order to run those commands.

Detergent13 commented 2 years ago

Are you on Windows? If so, use the 'cd' command to navigate to wherever you've downloaded it. So for example, my command line opens in C:\Users\, so I just type cd Downloads to get to where I've downloaded it. (And then run the command in the readme)

jo5000 commented 2 years ago

Oh thanks for this! Really helped me get to the next step but I'm encountering another problem where it says "'pip' is not recognized as an internal or external command, operable program or batch file."

I followed instructions to install pip and the picture shows this as well I believe but the command "pip install -r requirements.txt" does not work. Thank you for replying though! pip .

src52 commented 2 years ago

Oh thanks for this! Really helped me get to the next step but I'm encountering another problem where it says "'pip' is not recognized as an internal or external command, operable program or batch file."

I followed instructions to install pip and the picture shows this as well I believe but the command "pip install -r requirements.txt" does not work. Thank you for replying though! pip .

Awesome, you're getting close. So, you successfully got pip. But since the executables weren't added to your PATH, the command line doesn't understand what "pip" means.

For the sake of simplicity, you can just directly call the pip executable, since it was added to a folder called "Scripts" in your downloads folder.

In the command, replace "pip" with "C:\Users\jorda\Downloads\Scripts\pip.exe"

However, before you run that command, you need to make sure you're in the correct folder in Downloads.

Have you downloaded this repository as a zip file, and extracted it? If so, the files should be in a subfolder of Downloads (whatever the folder name was that you extracted).

You can use the cd command to navigate to the subfolder.

Let me know if you have any questions.

jo5000 commented 2 years ago

Thank you so much! This was perfect I really do appreciate you telling me exactly what to do honestly I probably needed it haha. I got it to work and it's perfect. Really appreciate this!!