freshest
freshest

Reputation: 6241

Compile Bootstrap with LESS using Node with makefile

I have read the Bootstrap instructions but cannot get the files to compile. Is there a more detailed tutorial or can anyone put me right, thanks.

I open a terminal and enter

npm install less

This seems to install file, I then change directory to the root of my Bootstrap directory and enter

make

I get the following error:

`make` is not recognised as an internal or external command

Upvotes: 1

Views: 2504

Answers (2)

neonguru
neonguru

Reputation: 759

On windows get:

less.js-windows

Setup your paths correctly... Then run:

lessc bootstrap.less

Upvotes: 1

brandon
brandon

Reputation: 528

The error you're getting just means make isn't installed. Installation varies depending on what operating system you're running. I would use a package manager, e.g. homebrew or macports for mac, apt-get for Ubuntu/Debian.

The command should look like:

sudo apt-get install make

Upvotes: 1

Related Questions