some-programs / exitwp

Exitwp is tool primarily aimed for making migration from one or more wordpress blogs to the jekyll blog engine as easy as possible.
686 stars 145 forks source link

Error while running python exitwp.py command #68

Open anandrikka opened 7 years ago

anandrikka commented 7 years ago

I'm no python developer, just trying to convert my wordpress.com site to jekyll

while running exitwp.py command getting following error:

Traceback (most recent call last):
  File "exitwp.py", line 13, in <module>
    import yaml
ImportError: No module named yaml
aatishb commented 7 years ago

I fixed this with: pip install PyYAML I also needed another python library that I didn't have: pip install BeautifulSoup4

etaiklein commented 7 years ago

change the command to sudo pip install --ignore-installed six --upgrade -r pip_requirements.txt

There's an issue with installing six on OS X El Capitan https://github.com/pypa/pip/issues/3165#issuecomment-145856429