1👍
✅
The traceback shows something that isn’t present in your github repo: there is a file in the templatetags directory called markdown2.py
, which is imported when the cheese
file does import markdown2
. Remove this file, and it should find the right one.
0👍
From console, having your Virtualenv activated in project’s directory, try:
pip install markdown2
That helped me, having the same issue. I have checked, using
pip freeze
that markdown2 were not actually installed, even thought it was shown in PyCharm.
👤Ria
- [Answer]-Can't find where an object method is defined (Askbot / Django)
- [Answer]-How can i escape data from text box in django
- [Answer]-Openshift-django-mysql : No tables created to database via syncdb
- [Answer]-Add a new root node to django-mptt tree
- [Answer]-Same URL Pattern, two different views?
Source:stackexchange.com