Installation on Docker
Docker
Docker can be used on almost every platform and offers and easy way to use the PSPDEV toolchain with very little setup.
To use it, install Docker itself using the instructions here.
Toolchain
Once docker is installed, the PSPDEV image can be downloaded using the following command from a terminal:
docker pull pspdev/pspdev:latest
To work with it, open a terminal in the directory with the code you’d like to build in it and run the following command:
docker run -ti -v .:/source pspdev/pspdev:latest
After that you can run cd /source
to navigate to the code.
That’s it, now the PSPDEV toolchain can be used to build PSP software. Check out the Basic Programs page to for examples on what you can do with it.