Lesscss命令行编译器Lessc

时间:2013-09-21 01:37:20

标签: macos less

您好我试图在Mac上安装LessCss命令行编译器。

我试过

brew install less
Error: No available formula for less

brew install lessc
Error: No available formula for lessc

sudo npm install -g less
..Installs happily..

sudo npm install -g lessc
npm http GET https://registry.npmjs.org/lessc
npm http 404 https://registry.npmjs.org/lessc
npm ERR! 404 'lessc' is not in the npm registry.

npm install less --global
..Installs happily..

npm install lessc --global
npm http GET https://registry.npmjs.org/lessc
npm http 404 https://registry.npmjs.org/lessc
npm ERR! 404 'lessc' is not in the npm registry.

我得到的只是

less js/less/style.less > style-theme.css
-bash: less: command not found

lessc js/less/style.less > style-theme.css
-bash: lessc: command not found

有没有人有这方面的经验?


我发现有些东西说我的路径变量可能搞砸了。这样:

/bin/echo $PATH

得到我:

/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin

3 个答案:

答案 0 :(得分:16)

npm的{​​{1}}包名称为lessc

尝试写作

less

答案 1 :(得分:8)

我会尝试提供一个完整的答案。

所有命令必须在终端应用程序中执行。

  1. 如果您没有:为Xcode安装命令行工具

    xcode-select --install

  2. 如果您没有:安装HomeBrew

    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  3. 如果您没有:安装Node.js

    brew install node

  4. 安装LessCSS

    sudo npm install -g less

  5. 现在您可以执行lessc命令。

答案 2 :(得分:1)

我正在使用macOS Siera为我工作,你可以尝试:

  1. 使用brew安装npm:
      

    brew安装节点

  2. 使用以下命令检查节点和npm版本:
      

    节点-v   npm -v

  3. 3.使用以下方式将用户更改为SU:

      

    sudo su

    1. 安装少:
    2.   

      npm install -g less

      祝你好运.....