Nikita
Nikita

Reputation: 61

SORL-thumbnail import error in Django project

I've installed SORL-thumbnail through pip. When I try to import it in the Python shell it's OK, but if I add this to INSTALLED_APPS I get:

ImportError (No module named SORL)

Upvotes: 6

Views: 2339

Answers (1)

miguelfg
miguelfg

Reputation: 1524

pip install sorl-thumbnail

Worked to me.

Notice that this package seems to have been published with a typo on the name.

Upvotes: 1

Related Questions