

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 3
click for more info
Not enough gems
Cost: 6 gems
1: Open a Terminal
incomplete
2: Installing Windows Subsystem for Linux
incomplete
3: Terminal Alternatives
incomplete
4: Download Worldbanc
incomplete
5: Shell Configuration
incomplete
6: PATH Config
incomplete
7: Shell Aliases
incomplete
8: Man
incomplete
9: Symbolic Links
incomplete
10: Top
incomplete
11: Interrupt
incomplete
12: Kill
incomplete
Back
ctrl+,
Next
ctrl+.
This lesson's interactive features are locked, please to keep using them
Earlier in the course, the worldbanc files were pre-loaded into the browser shell for you. Now that you're on your own machine, you'll download it for real so you can keep investigating WorldBanc locally.
If you're using WSL, your pwd output should not start with /mnt/c/ or /mnt/d/. Run cd ~ before continuing so you're working in the Linux filesystem.
If you run into an issue, see the troubleshooting tips below.
curl -L https://github.com/bootdotdev/worldbanc/archive/refs/heads/main.zip -o worldbanc.zip
unzip worldbanc.zip
rm worldbanc.zip
mv worldbanc-main worldbanc
You should now have a worldbanc directory in your current working directory. If you ever ruin your copy of worldbanc while practicing, just come back to this lesson and download it again.
cd worldbanc
If you're having issues with the download due to curl or unzip not being installed on Ubuntu/WSL, you can install them with the following commands:
sudo apt install unzip
sudo apt install curl
Certain Windows versions may not let you paste into the Command Line. See how to enable Ctrl+Shift+V.