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
Installing the PSPDEV toolchain itself can be done with the following steps:
42
42
43
-
1.Download [the latest version of the toolchain here](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-ubuntu-latest-x86_64.tar.gz).
44
-
2. Extract the downloaded archive into your `\\wsl$\home\YOURUSERNAME\`, resulting in `\\wsl$\home\YOURUSERNAME\pspdev` being created. Replace `YOURUSERNAME` with the existing one. This can be done using
43
+
1.In a fresh WSL Session download the Toolchain Archive using curl `curl -O https://github.com/pspdev/pspdev/releases/latest/download/pspdev-ubuntu-latest-x86_64.tar.gz`
44
+
2. Extract the archive using `tar -xvf pspdev-ubuntu-latest-x86_64.tar.gz`
45
45
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 an Ubuntu terminal:
46
46
```shell
47
47
nano ~/.bashrc
48
48
```
49
49
4. Add the following lines at the bottom of the file in the text editor:
50
50
```shell
51
-
export PSPDEV="~/pspdev"
51
+
export PSPDEV="$HOME/pspdev"
52
52
export PATH="$PATH:$PSPDEV/bin"
53
53
```
54
54
5. Now save and exit by pressing `Ctrl`+`X`, then`Y` and then enter/return.
0 commit comments