19

Hi I am learning LESS and I would like to install lessc on my Windows 7.

Following this tutorial http://verekia.com/less-css/dont-read-less-css-tutorial-highly-addictive

The first step is I dowloaded and installed node.js (node-v0.10.5-x64.msi).

Then in a console, I ran

npm install less -g

I got the following:

npm http GET https://registry.npmjs.org/less
npm http 304 https://registry.npmjs.org/less
npm http GET https://registry.npmjs.org/ycssmin
npm http 304 https://registry.npmjs.org/ycssmin
C:\Users\Me\AppData\Roaming\npm\lessc -> C:\Users\Me\AppData\Roaming\npm\node_modules\less\bin\lessc
less@1.3.3 C:\Users\Me\AppData\Roaming\npm\node_modules\less
+-- ycssmin@1.0.1

Then I ran the following in the same console:

lessc style.less > style.css

But I got

'lessc' is not recognized as an internal or external command, operable program or batch file.

I am not sure where I got wrong. I googled but it seems there is too much stuff, not sure which one is right. Did many tests without any success.

Could someone tell me how to do it or give me a pointer to some place with detailed and latest install info for Windows?

4

9 回答 9

16

在控制台中,运行以下命令:

node C:\Users\Me\AppData\Roaming\npm\node_modules\less\bin\lessc style.less > style.css

style.less必须在控制台的目录中。

于 2013-05-11T02:31:47.180 回答
8

步骤1:npm install less -g

第2步:npm i less --save-dev

于 2015-06-07T18:09:56.933 回答
7

要让 lessc 工作,你必须添加

C:\Users\Me\AppData\Roaming\npm

到路径

于 2014-01-25T03:09:08.413 回答
4

我想您可以在系统属性 -> 高级 -> 环境变量中添加 bin 文件夹,并通过编辑 Path 变量将整个路径附加到 bin 文件夹。

于 2013-08-19T07:39:40.150 回答
3

如果您刚刚安装了 node.js,Windows PATH 变量将不会在任何正在运行的 CMD 窗口中更新。尝试关闭 CMD 并重新打开它!

于 2014-12-03T01:29:01.430 回答
2

我通过使用 Node Version Manager (nvm) 安装和使用最新版本的 Node.js 解决了这个问题

nvm install latest
nvm use 12.4.0

之后,我导航到我的项目文件夹并输入:
npm install less -g然后
npm i less --save-dev

最后我打字lessc less/index.less css/index.css编译了我的less。

于 2019-06-16T23:03:30.660 回答
1

如果您使用的是 Windows,请不要忘记以管理员身份打开命令行控制台。

于 2016-12-16T06:44:56.513 回答
0

在花费了大约几个小时来编译更少的文件之后,我得到了非常简单的答案:

  1. 为 Windows 用户下载 node-v0.10.26-x64.msi -> 安装它 -> 然后
  2. 转到 *.less 文件所在的任何文件夹(在命令提示符中)并运行命令“lessc styles.lsss > styles.css”。(例如:在命令提示符下,less 是存在 *.less 文件的我的 less 文件夹) D:\less>lessc styles.less > styles.css
  3. 现在您将获得自动创建的 styles.css 文件。打开并查看styles.css 文件
于 2014-03-28T19:20:17.363 回答
0

好吧,您必须在您的机器上安装 NodeJS,使用此链接下载并安装它。

安装后,请确保重新启动您的机器。然后通过在CMD中运行“node -v”和“npm -v”检查它是否正确安装。

一旦完成运行“npm install less -g”,你就可以编译你的less文件了。

只需进入文件所在的目录并运行“lessc style.less style.css”

更多可以在这个链接上找到。

于 2017-11-20T10:12:38.340 回答