polarcare
polarcare

Reputation: 575

installing yui compressor for django pipeline

I'm trying to use django pipeline, should be able to get it working but I'm just unsure as to how to install yui compressor on my system so pipeline recognizes it?

Upvotes: 1

Views: 895

Answers (1)

Konrad Hałas
Konrad Hałas

Reputation: 5144

You can download it and install manually or you can use your system package manager (e.g. in Debian: sudo apt-get install yui-compressor). After that you need to point binary in your settings:

PIPELINE_YUI_BINARY = '<path to yuicompressor>'

Upvotes: 1

Related Questions