Windows Subsystem for Linux (WSL)
Several steps in the data upload process are executed from the command line. For Windows users, the simplest approach is to install Windows Subsystem for Linux (WSL), which provides access to an Ubuntu terminal.
Install WSL
The full documentation is available here. In short:
-
Open PowerShell in Administrator mode: find PowerShell via Windows Start menu, right-click and select "Run as administrator"
-
In PowerShell, enter the following command:
wsl --install -
Restart computer
Open Ubuntu terminal
Go to Windows Start menu and type "Ubuntu". This will open Ubuntu in its own console window.
Basic commands
-
You can use the command
cd <path>to navigate to any location on your computer. For example, you can navigate to your C: drive ascd /mnt/c -
To list the content of your current working directory, type
ls.