Astro CLI Docker/Windows gets errors

I followed the Windows instructions (https://github.com/astronomer/astro-cli) and tried astro 0.13.1, 0.19.0 and 0.20.0, all with the same issues.

I get the docker containers running and I can connect to the airflow web page.

The example-dag does not show up, and any plugin or dag in the folders get the same error on the web server logs: OSError: [Errno 38] Function not implemented

2020-09-28 23:20:02,879] {dagbag.py:403} INFO - Filling up the DagBag from /usr/local/airflow/dags

{dag_processing.py:379} ERROR - Error while examining example-dag.py`

Traceback (most recent call last):

File "/usr/lib/python3.7/site-packages/airflow/utils/dag_processing.py", line 369, in list_py_file_paths

content = fp.read()

OSError: [Errno 38] Function not implemented

020-09-28 23:24:05,070] {plugins_manager.py:191} ERROR - [Errno 38] Function not implemented
Traceback (most recent call last):
File “/usr/lib/python3.7/site-packages/airflow/plugins_manager.py”, line 185, in
m = imp.load_source(namespace, filepath)
File “/usr/lib/python3.7/imp.py”, line 171, in load_source
module = _load(spec)
File “”, line 696, in _load
File “”, line 677, in _load_unlocked
File “”, line 724, in exec_module
File “”, line 859, in get_code
File “/usr/lib/python3.7/imp.py”, line 157, in get_data
return super().get_data(path)
File “”, line 917, in get_data
OSError: [Errno 38] Function not implemented
[2020-09-28 23:24:05,072] {plugins_manager.py:192} ERROR - Failed to import plugin /usr/local/airflow/plugins/example-plugin.py

I found the issue. I thought I had enabled WSL, but turns out I had not. Once I enabled it and restarted, it began working.