4

我使用 msi 安装程序在 Windows 7 上安装了 Node 0.10.12

在此之前,我安装了 python 2.7 和 gmake - 所有这些都安装成功。

现在,我在打字

"$ sudo npm install -g sax" to download the sax package and nothing is happening. All I get is "...". Just 3 dots.

这是否意味着正在下载或出现问题?我想有什么问题,因为我看到这些点 30 分钟仍然没有。我只是不明白。

另外,在我读到的关于节点的书中,模块文件夹说“/usr/local/lib/node_modules”,但我在这里找到了默认模块“C:\Program Files (x86)\nodejs\node_modules\npm\node_modules ”。那是错的吗?这是否意味着安装出现问题?

4

2 回答 2

16

三个点表示您正在节点解释器(Node.js 命令提示符)内运行命令。

npm install -g sax从 Windows 命令行终端而不是 node.js 终端运行。cmd打开 Windows 菜单并打开程序后键入,然后输入此命令。

于 2013-06-30T12:51:55.047 回答
-1

“/usr/local/lib/node_modules”将是一个 UNIX (linux) 路径。我没有尝试在 Windows 上运行 nodejs,但该路径应该没问题。

sudo 将使您的命令在 linux 中以管理员身份运行,在 Windows 中您可能只想尝试“npm install -g sax”。

于 2013-06-30T02:33:05.560 回答