Skip to content
New issue

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

Missing dependencies for yaml #32

Open
oliverclozov opened this issue Jul 25, 2019 · 2 comments
Open

Missing dependencies for yaml #32

oliverclozov opened this issue Jul 25, 2019 · 2 comments

Comments

@oliverclozov
Copy link

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.

@oliverclozov oliverclozov changed the title Missing dependencies Missing dependencies for yaml Jul 25, 2019
@xYantix
Copy link

xYantix commented Oct 15, 2019

I have updated the README.md file to include this information in #33

@berkbykn
Copy link

berkbykn commented Jan 2, 2020

It's because of the python and pip versions.. If you are using pip, follow:
pip install --upgrade setuptools
pip install PyYAML==5.2

If you are using pip3, follow:
pip3 install --upgrade setuptools
pip3 install PyYAML==5.2

(PyYAML should be latest version.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants