This tutorial is in response to a Pinterest comment I saw from someone who wanted to download Asperite but was too young to be able to afford it. You can compile the programs' code yourself for free on Github. Here's how:
Disclaimer: I assume three things when writing this; One, you have a basic knowledge of computers, ie how to install programs, how to open programs, and what a program even is. Two, you are running Windows 10/11 how do you expect me to write a tutorial about an OS that I don't use?. Three, you are cloning the repository on your internal drive (your own computer, not an external drive or a flash/thumb drive).
Documents
folder or a custom projects folder).cd
(change directory) command to navigate to that folder. For example, if you're downloading to your "Documents" folder:
cd ~/Documents
Replace Documents
with the folder path of your choice.
git clone --recursive https://github.com/aseprite/aseprite.git
aseprite
within the directory you selected.cd aseprite
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLAF_BACKEND=skia -G Ninja ..
ninja aseprite
build/bin
folder of the directory where you downloaded and built Aseprite.
If you're not sure where that is, check the folder you used when you cloned Aseprite from GitHub or extracted its source files. Inside that folder, look for a subfolder called build
, and then open the bin
folder. The file you're looking for is named something like aseprite.exe
.
git --version
in Git Bash and try restarting your computer. If it lists the version of Git that's currently installed, you're good to go. Even if you end up skipping through all of that and downloading LibreSprite, thank you for taking the time to read this far. This information applies to not only cloning the Asperite repository (copying its files to your computer) but also cloning any other repository. If anything, I hope you learned something new in case you didn't know before.