estebistec / django-twitter-bootstrap

This package provides a Django app whose static folder contains the sources of Twitter Bootstrap, nothing more and nothing less.
MIT License
64 stars 22 forks source link

'module' object has no attribute 'Popen' #14

Closed ymorin007 closed 10 years ago

ymorin007 commented 10 years ago

Not sure if you can help me but I'm trying to deploy a Django site using django-twitter-bootstrap library to Google App Engine but since GAE wont accept third-party libraries that are not supplied by the SDK I need to installed it within my app directory.

So I copied the /django-twitter-bootstrap inside my app but when I run it I get the following error:


AttributeError at /guests/ 'module' object has no attribute 'Popen'

In template /base/data/home/apps/s~mmaprophet-1/1.375327318280818695/templates/base.html, error at line 15

LINE 15 {% compressed_css 'bootstrap' %}


http://mmaprophet-1.appspot.com/guests/

Any idea?

zsiciarz commented 10 years ago

GAE does not allow running subprocesses (which is what django-pipeline does with subprocess.Popen). You need to use another CSS preprocessor, or compress assets locally and deploy only compressed files.

ymorin007 commented 10 years ago

Thanks for the fast response ... I will do that.