[Answer]-Importing Markdown2 in template tag

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

Leave a comment