| title | Installation on Debian |
|---|---|
| layout | home |
| nav_exclude | true |
{: .fs-8 .fw-700 .text-center }
{: .fs-6 .fw-700 }
The PSP SDK requires a couple of dependencies to be installed before use. To install them, run the following command from a terminal:
sudo apt-get updatesudo apt-get install build-essential cmake pkgconf libreadline8 libusb-0.1 libgpgme11 libarchive-tools fakeroot{: .fs-6 .fw-700 }
Installing the PSP SDK itself can be done with the following steps:
- Download the latest version of the toolchain here.
- Extract the downloaded archive into your home directory, resulting in
/home/YOURUSERNAME/pspdevbeing created. - To make the toolchain usable, some environment variables need to be set. The first step in doing so it to open the
~/.bashrcfile with thenanotext editor using the following command from a terminal:nano ~/.bashrc - Add the following lines at the bottom of the file in the text editor:
export PSPDEV="$HOME/pspdev" export PATH="$PATH:$PSPDEV/bin"
- Now save and exit by pressing
Ctrl+X, thenYand then enter/return. - Close the current terminal and open a new one.
- From the new terminal, run the following command to confirm everything is set up correctly:
psp-config --pspdev-path
That's it, now the PSP SDK can be used to build PSP software. Check out the How to Use page for a guide on how to do so.