我正在關注Django-rest-framework.org教程,這是models.py的代碼,如下所示。如何在Ubuntu上安裝pygments?
from django.db import models
from pygments.lexers import get_all_lexers
from pygments.styles import get_all_styles
LEXERS = [item for item in get_all_lexers() if item[1]]
LANGUAGE_CHOICES = sorted([(item[1][0], item[0]) for item in LEXERS])
STYLE_CHOICES = sorted((item, item) for item in get_all_styles())
,當我運行如下命令:
python manage.py syncdb
它給了我這個錯誤
ImportError: No module named pygments.lexers
我認爲我必須先安裝Pygments來做工作的這段代碼。 那麼告訴我如何在我的Ubuntu 12.04中安裝pygments。我已經安裝了Python 2.7版本。
你是如何安裝DRF的?推測使用點子。你應該以同樣的方式安裝pygments。 – 2014-10-06 12:04:41