You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: downloads.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,11 @@ nav_order: 7
9
9
10
10
Download the latest update for the PSP SDK here. If you don't have it setup yet, go to the [installation instructions](installation.html) instead! Otherwise click on the link for your system:
Alternatively, development builds are available [here](https://github.com/pspdev/pspdev/releases/tag/latest). Only get these if you cannot wait a couple of weeks for a specific new feature or you are working on improving the toolchain itself.
Installing the PSP SDK itself can be done with the following steps:
27
+
28
+
1. Download [the latest version of the toolchain here](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-debian-latest.tar.gz).
29
+
2. Extract the downloaded archive into your home directory, resulting in `/home/YOURUSERNAME/pspdev` being created.
30
+
3. To make the toolchain usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from a terminal:
31
+
```shell
32
+
nano ~/.bashrc
33
+
```
34
+
4. Add the following lines at the bottom of the file in the text editor:
35
+
```shell
36
+
export PSPDEV="$HOME/pspdev"
37
+
export PATH="$PATH:$PSPDEV/bin"
38
+
```
39
+
5. Now save and exit by pressing `Ctrl`+`X`, then`Y` and then enter/return.
40
+
6. Close the current terminal and open a new one.
41
+
7. From the new terminal, run the following command to confirm everything is set up correctly:
42
+
```shell
43
+
psp-config --pspdev-path
44
+
```
45
+
46
+
That's it, now the PSP SDK can be used to build PSP software. Check out the [How to Use](../how_to_use.html) page for a guide on how to do so.
0 commit comments