You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure how pip encodes dependencies, but I ran into this problem after installing with
python3 -m pip install memethesis --user
I get
[1] atondwal@anish-kudu> python3 -m memethesis ~
Traceback (most recent call last):
File "/usr/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/atondwal/.local/lib/python3.6/site-packages/memethesis/__main__.py", line 4, in <module>
from .meme.vertical import make_vertical
File "/home/atondwal/.local/lib/python3.6/site-packages/memethesis/meme/vertical.py", line 12, in <module>
FORMATS = read_formats()
File "/home/atondwal/.local/lib/python3.6/site-packages/memethesis/format_utils.py", line 11, in read_formats
Loader=yaml.FullLoader)
AttributeError: module 'yaml' has no attribute 'FullLoader'
fixed by
python3 -m pip install -U PyYAML
Is there some way to include a version bound for the PyYAML dependency?
The text was updated successfully, but these errors were encountered:
I'm not sure how pip encodes dependencies, but I ran into this problem after installing with
I get
fixed by
Is there some way to include a version bound for the PyYAML dependency?
The text was updated successfully, but these errors were encountered: