## Windows configuration Our repo works runs best on Linux-based systems (which includes Mac OS). If you need to run on Windows, you'll have some extra considerations to take into account. Note that this documentation applies for Windows 10 and Windows 11 machines. ### WSL 2 In order to download Docker, you need to install WSL 2 if you don't already have it. **We find it best to download and configure WSL 2 before anything else**. We recommend using the [Command Prompt](https://en.wikipedia.org/wiki/Cmd.exe) to run these commands (and later ones). You can find it by typing `Command Prompt` in the Windows search bar. The simplest way to install WSL 2 is to run `wsl --install`. If this works, great. Otherwise, you'll have to run these steps: * Open `Windows Features`, you can do this by typing this in the Windows search bar * Make sure the check box is selected for both `Virtual Machine Platform` and `Windows Subsystem for Linux` * Restart your machine Now run the following steps: * Download the Linux kernel update package. You can find it here: [Linux kernel update package](https://docs.microsoft.com/en-us/windows/wsl/install-manual#step-4---download-the-linux-kernel-update-package). * Set the version to WSL 2: `wsl --set-default-version 2` * Type just `wsl` on the command line. You'll likely get an error indicating no installed distributions, meaning you'll need to associate one with your WSL backend. We recommend installing Ubuntu 20.04 LTS in the Microsoft Store. * Once Ubuntu is installed, open it (it will open the Ubuntu terminal) and set a username and password to finalize installation. * Run `sudo apt-get update` in the Ubuntu terminal to view all the necessary updates (alternatively, you can run `wsl sudo apt-get update` in the Windows Command Prompt). * Run `sudo apt-get upgrade` to download and install the necessary updates (alternatively, you can run `wsl sudo apt-get upgrade`). Note that if using a VM or the Hyper-V backend, nested virtualization needs to be turned on. This process varies depending on which virtualization platform you use: you'll have to consult their documentation for the how-tos. ### Download git Go to [git Windows install](https://git-scm.com/download/win) to download the Windows installer for `git`. After finishing the installer guidelines, go to your Command Prompt and type `git`. If you get a list of commands you can use with `git`, the installation was successful. ### Docker Desktop Go to [Docker for Windows install](https://docs.docker.com/desktop/windows/install) to download `Docker Desktop`. Open the shortcut (which should be added to your Desktop after installation) and open `Docker Desktop`. If the engine starts up successfully, Docker has been configured. Note that the engine may take a while to set up properly. ### Setting up the repo In your Command Prompt, follow similar steps to clone the `ark-analysis` repo and build the Docker: * Run `git clone https://github.com/angelolab/ark-analysis.git` to clone the `ark-analysis` repo * Run `cd ark-analysis` to enter the cloned repo * Pull the latest Docker image by running `docker pull angelolab/ark-analysis:latest` To run the script, you have to use `bash start_docker.sh`. If you run into issues with invalid carriage returns (`\r`), please run the following before trying again: * Run `wsl sudo apt-get install dos2unix` * Run the following commands: > `wsl dos2unix start_docker.sh` > `wsl dos2unix start_jupyter.sh` > `wsl dos2unix update_notebooks.sh` ### Addressing `docker` not found If you run into this issue, or if you notice `wsl` commands are not displaying any output, it's likely that you will need to adjust the default Linux distribution WSL is pointing to. * Run `wsl -l -v`. You should be seeing 3 distros: `Ubuntu-20.04`, `docker-desktop`, and `docker-desktop-data` * Make sure `Ubuntu-20.04` is starred (`*` to the left) and running. If not, run `wsl --setdefault Ubuntu-20.04` to change the default version. Run `wsl -l -v` again to double check that the changes took effect. * Restart Docker Desktop by opening the application, clicking the bug logo at the top-right, then clicking `Restart`. * Run `wsl -l -v` to see if all 3 distros are running. If Ubuntu 20.04 is not running, run `wsl -d Ubuntu-20.04`, then `logout`. ### Mounting External Drives If you wish to mount an external drive to the Docker instance you may do so by adding an argument to the execution of the `start_docker.sh` script. If, for example the data is stored on `X:/path/to/external/data/` where `X:/` is your external drive name, you will need to add: ```bash bash start_docker.sh --external "/mnt/x/path/to/external/data" ``` `X:/` has to be swapped with `/mnt/x/` to be a valid path on WSL. In addition `--external` has a shorthand notation: `-e`. ```bash bash start_docker.sh -e "/mnt/x/path/to/external/data" ``` ### Mounting Issues If Jupyter cannot locate the path to a certain external drive, that likely means WSL failed to mount it correctly. You'll need to restart WSL to force remount all external drives. To do so, run the following steps: * Run `wsl --shutdown` * Docker Desktop will prompt you in the bottom right to Restart the service. Click `Restart`. * After a few seconds, run `wsl -l -v`. All 3 Linux distros (Ubuntu 20.04, docker-desktop, and docker-desktop-data) should be running. ### If you run into more Windows-specific issues Please open an [issue](https://github.com/angelolab/ark-analysis/issues) on our GitHub page. Note that our codebase has not been extensively tested on Windows.