Open YvesStephen opened 2 days ago
Despite what is says in their FAQ, the maintainers of this Repository seemingly do not have any .exe files as of 11/7/24. That means that you're going to have to make your own (kinda).
The steps to do this should be as follows:
Note that you will have to download (probably more than 1Gb) and install some things in order to build the exe yourself.
Below are links to download rustup, the rust installer. Choose one depending on whether you have a 32-bit or 64-bit system. If you don't know, then this website will help you find out.
Download rustup-init.exe (32-bit) Download rustup-init.exe (64-bit)
Once you've downloaded and ran rustup-init.exe
, you'll probably see this:
Of the three options here, 1 is the quickest, but know that it will install a code editor called "Visual Studio" in order to do its job. If you don't want this, then you'll have to install the prerequisites manually [2] (more info here .) Otherwise press 1.
You should soon see a visual studio window pop up and ask you about its installation. Ensure that the two MSVC.... and Windows 10/11 SDK boxes are checked. If they aren't, they will not install and the program will not compile correctly:
Once you've clicked through that and gotten that installed, you should be faced with this on your cmd:
Pressing 'Enter' should do the trick, then the installer will start downloading and installing a bunch of Rust tools (clippy, cargo, rustc). This'll take maybe 10-15 minutes depending on your Internet speed n' such.
Once that's done it'll say that Rust is installed and then auto-close. However we need to install the nightly build of Rust for this program. You will need to open the Windows search bar and search for "command prompt" and open it. Then type in rustup toolchain install nightly
and press enter. This will take a little bit.
Once that's done go ahead and type in rustup default nightly
and press enter. Then type in cargo update
.
Congrats: hard part over.
On the Goonto Github page, click on the green "<> code v" button, then click on "Download ZIP".
Once that's installed, unzip it and open the "goonto-master" folder.
Now that you have the goonto-master folder open in file explorer, open a command prompt if you don't have one open already.
Now go back to the goonto folder you have open, and copy the file path:
Now go back to the command prompt and type "cd", then paste your copied path:
Press enter, and then enter in "cargo build --release". Once you press enter it will compile (make) the program/.exe.
When it's done, you can type cd target\release\goonto
to enter the exact folder where the goonto.ex is, or you can navigate there using your file explorer (wherever you put the goonto-master folder + target\release\goonto).
Enjoy.
I'm new to using GitHub, so I'm not sure if I'm doing anything right or wrong, but I am having trouble locating and running the program, as I don't see any .exe file. Idk if I'm downloading wrong or need to have another program but help would be greatly appreciated