Compiling a Local Version of the Website (Windows 10 Platform)
tl;dr Windows 10 does not play well with PATH environments. Installing Ubuntu 16.04 LTS is the _path of least resistance_ way to develop locally on Windows 10.
# Ubuntu
1\. Run as Administrator the Windows PowerShell App and run:
3\. Check your build: Settings > System > About. Must be Windows 10 version 16215.0 or higher.
4\.[Ubuntu 16.04 LTS](https://www.microsoft.com/store/apps/9pjn388hp8c9). See System Requirements; Your device must meet all minimum requirements to open this product. Click "Get." Redirected to Microsoft Store. Click "Get" again.
5\. Click "Launch."
6\. Once installation is complete, you will be prompted to create a new user account (and its password).
**When you elevate a process using sudo, you will need to enter your password, so make sure you choose a password you can easily remember!**
7\. Update & upgrade your distro's packages:
`$ sudo apt update && sudo apt upgrade`
8\. Remove Windows path from WSL PATH:
`$ sudo vim /etc/wsl.conf`
a. Press `i` to insert text (you should see `-- INSERT --` at the bottom-left of the console).
b. Type:
```
[interop]
appendWindowsPath = False
```
c. Press Esc key to exit `-- INSERT --` mode.
d. Type `:x`, press Enter key to exit vim and save work.
9\. To verify your work, type: `cat /etc/wsl.conf` and you should see: