npm install成功但无法运行程序

时间:2018-04-20 08:32:47

标签: javascript npm

我正在尝试在我的Windows机器上安装http-server,bower,grunt。我尝试使用npm install安装安装成功但是,当我尝试运行命令时,它说命令未找到。我尝试关闭命令提示符并再次执行。结果相同。该文件位于appdata文件夹中。

C:\Users\testuser>npm install http-server
+ http-server@0.11.1
updated 1 package in 5.713s

C:\Users\testuser>http-server
'http-server' is not recognized as an internal or external command,
operable program or batch file.

我尝试列出服务并安装了服务

C:\Users\testuser>npm list -g --depth=0
C:\Users\testuser\AppData\Roaming\npm
+-- bower@1.8.4
+-- http-server@0.11.1
`-- json-server@0.12.1

我尝试搜索类似的问题,但找不到相同的内容。

1 个答案:

答案 0 :(得分:0)

 npm install http-server -g

这将全局安装http-server,以便可以从命令行运行。