We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
pip install yaml
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
pip install pyyaml
apt-get install python-yaml
I suggest either updating the dependencies or reflect this somewhere in the documentation.
The text was updated successfully, but these errors were encountered:
I have updated the README.md file to include this information in #33
Sorry, something went wrong.
It's because of the python and pip versions.. If you are using pip, follow: pip install --upgrade setuptools pip install PyYAML==5.2
pip install --upgrade setuptools
pip install PyYAML==5.2
If you are using pip3, follow: pip3 install --upgrade setuptools pip3 install PyYAML==5.2
pip3 install --upgrade setuptools
pip3 install PyYAML==5.2
(PyYAML should be latest version.)
No branches or pull requests
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:SOLUTION
Run
pip install pyyaml
or if you want to install machine-wide runapt-get install python-yaml
I suggest either updating the dependencies or reflect this somewhere in the documentation.
The text was updated successfully, but these errors were encountered: