7

您好我正在尝试在 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
4

3 回答 3

17

npmlesscless

尝试写作

sudo npm install -g less
于 2013-09-21T01:46:34.087 回答
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

现在您可以执行lessc命令了。

于 2014-11-24T13:20:53.307 回答
1

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

  1. 使用 brew 安装 npm:

    冲泡安装节点

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

    节点 -v npm -v

3.使用以下命令将用户更改为 SU:

须藤

  1. 少安装:

npm install -g 少

祝你好运.....

于 2017-04-18T08:43:28.813 回答