0

I'm trying to compress my static files using node and keep getting a no module error

Basil-MBP:syte Basil$ python compress.py
Traceback (most recent call last):
  File "compress.py", line 13, in <module>
    from django.conf import settings
ImportError: No module named django.conf

Here is a link to my compress.py file: https://github.com/bsiddiqui/bsiddiqui.com/blob/master/syte/compress.py

bsiddiqui
  • 1,886
  • 5
  • 25
  • 35

1 Answers1

1

is django available on your python path? is your environment activiated?

dm03514
  • 54,664
  • 18
  • 108
  • 145