Hallo Wolfgang,
falls du mit einem Ubuntu arbeitest, kann es sein, dass du nach des LESS-Installation noch den Pfad von node.js anpassen musst. Das war bei uns das Problem. Öffne mit einem Editor /usr/local/bin/lessc und ändere
#!/usr/bin/env node
in
#!/usr/bin/env nodejs
"Because the command name of the node.js is
falls du mit einem Ubuntu arbeitest, kann es sein, dass du nach des LESS-Installation noch den Pfad von node.js anpassen musst. Das war bei uns das Problem. Öffne mit einem Editor /usr/local/bin/lessc und ändere
#!/usr/bin/env node
in
#!/usr/bin/env nodejs
"Because the command name of the node.js is
nodejs
(instead of node
) on Ubuntu, when the installation is complete, you need to change this first line of lessc
command. Open /usr/local/bin/lessc
with your favorite text editor (with root privileges), and change the end of the first line from node
to nodejs
." (http://www.onurguzel.com/install-less-on-ubuntu-with-npm/)