Sto seguendo il tutorial di Django-rest-framework.org e questo è il codice di models.py come sotto.Come installare pygments su Ubuntu?
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())
e quando il comando seguito ho eseguito:
python manage.py syncdb
mi dà questo errore
ImportError: No module named pygments.lexers
penso che devo installare pygments prima di lavorare in questo codice. Allora dimmi come installare pygments nella mia Ubuntu 12.04. Ho installato la versione Python 2.7.
Come è stato installato DRF? Presumibilmente usando pip. Dovresti installare pygments nello stesso modo. –