Reputation: 6241
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
Reputation: 759
On windows get:
Setup your paths correctly... Then run:
lessc bootstrap.less
Upvotes: 1
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