I installed on a fresh install of Ubuntu Server 18.04 in Azure.
PROBLEM
Upon running the ./generate_config.py I encountered the "ImportError: No module named yaml" error.
Running pip install yaml results in:
Collecting yaml
Could not find a version that satisfies the requirement yaml (from versions: )
No matching distribution found for yaml
SOLUTION
Run pip install pyyaml or if you want to install machine-wide run apt-get install python-yaml
I suggest either updating the dependencies or reflect this somewhere in the documentation.
I installed on a fresh install of Ubuntu Server 18.04 in Azure.
PROBLEM
Upon running the ./generate_config.py I encountered the "ImportError: No module named yaml" error.
Running
pip install yamlresults in:SOLUTION
Run
pip install pyyamlor if you want to install machine-wide runapt-get install python-yamlI suggest either updating the dependencies or reflect this somewhere in the documentation.