[Answered ]-Django pipeline FileNotFoundError when the path is right

1👍

After a lot of debugging, I realized that django-pipeline is trying to execute the command /usr/bin/env yuglify --type=css --terminal, which does not work for me on windows. So I installed yuglfy with npm and changed the YUGLIFY_BINARY setting to the path to yuglify (important to a .cmd file).

Leave a comment