Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 977 Bytes

docker.md

File metadata and controls

34 lines (23 loc) · 977 Bytes
title layout nav_exclude
Installation on Docker
home
true

Installation on Docker

{: .fs-8 .fw-700 .text-center }

Docker

{: .fs-6 .fw-700 }

Docker can be used on almost every platform and offers and easy way to use the PSP SDK with very little setup.

To use it, install Docker itself using the instructions here.

Toolchain

{: .fs-6 .fw-700 }

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 PSP SDK can be used to build PSP software. Check out the Basic Programs page to for examples on what you can do with it.