您好我试图在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
答案 0 :(得分:16)
npm
的{{1}}包名称为lessc
尝试写作
less
答案 1 :(得分:8)
我会尝试提供一个完整的答案。
所有命令必须在终端应用程序中执行。
如果您没有:为Xcode安装命令行工具
xcode-select --install
如果您没有:安装HomeBrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
如果您没有:安装Node.js
brew install node
安装LessCSS
sudo npm install -g less
现在您可以执行lessc
命令。
答案 2 :(得分:1)
我正在使用macOS Siera为我工作,你可以尝试:
brew安装节点
节点-v npm -v
3.使用以下方式将用户更改为SU:
sudo su
npm install -g less
祝你好运.....