Setting up Development Environment: Difference between revisions
m added installation path to match environment variable |
WinterMute (talk | contribs) |
||
Line 24: | Line 24: | ||
** Arch Linux/ALWSL: <code>sudo pacman -S git curl wget</code> | ** Arch Linux/ALWSL: <code>sudo pacman -S git curl wget</code> | ||
** macOS: Download Git from [http://git-scm.com/download/mac] and install it. Curl is included with the OS. | ** macOS: Download Git from [http://git-scm.com/download/mac] and install it. Curl is included with the OS. | ||
* Next, we need to download, make executable and run the devkitARM updater (don't worry, the updater is also the installer.) | * Next, we need to download, make executable and run the devkitARM updater (don't worry, the updater is also the installer.) | ||
Line 35: | Line 29: | ||
curl -L https://raw.githubusercontent.com/devkitPro/installer/master/perl/devkitA64update.pl -o devkitA64update.pl | curl -L https://raw.githubusercontent.com/devkitPro/installer/master/perl/devkitA64update.pl -o devkitA64update.pl | ||
chmod +x ./devkitA64update.pl | chmod +x ./devkitA64update.pl | ||
./devkitA64update.pl | ./devkitA64update.pl | ||
</pre> | </pre> | ||
You | You can either use sudo here or chown /opt/devkitpro to be writable by your user before running the script. | ||
= Building the examples = | = Building the examples = |