QualityBox/development: Difference between revisions

No edit summary
m Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
Tags: Mobile edit Mobile web edit
 
Line 7: Line 7:
  ImportError: No module named yaml
  ImportError: No module named yaml
Means that your Python doesn't have the YAML parsing module.  You might as well add this to your global Python
Means that your Python doesn't have the YAML parsing module.  You might as well add this to your global Python
<source lang="bash">sudo --set-home pip install pyyaml</source>
<syntaxhighlight lang="bash">sudo --set-home pip install pyyaml</syntaxhighlight>


  No module named jinja2.exceptions
  No module named jinja2.exceptions
Means that your Python doesn't have the Jinja2 template module.  You can install this into your ''user'' environment with
Means that your Python doesn't have the Jinja2 template module.  You can install this into your ''user'' environment with
<source lang="bash">pip install --user Jinja2</source>
<syntaxhighlight lang="bash">pip install --user Jinja2</syntaxhighlight>


[[Category:QualityBox]]
[[Category:QualityBox]]