Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: No module named staticfiles

Tags:

I'm newbie with django, I'm trying to deploy my project on a production server but I'm getting this error:

Error: No module named staticfiles

When trying to start the server:

python manage.py runfcgi host=127.0.0.1 port=8081 --settings=settings

with the fastCGI + nginx

Any idea?

Thanks!

like image 843
Mc- Avatar asked Feb 13 '11 22:02

Mc-


1 Answers

You're probably using older version of Django. staticfiles app has been available from version 1.3 only.

like image 136
Seb Avatar answered Sep 22 '22 06:09

Seb