npm should be run outside of the node repl, in your normal shell
PHP中文网2017-04-17 13:59:36
不要在 node.exe
裡面跑 npm install
,在 cmd.exe
裡面跑。 windows
裡面的 normal shell
指的是 cmd.exe
。
高洛峰2017-04-17 13:59:36
不要在指令裡先空白輸入:node
,然後在node
的REPL
(互動式解釋器)裡執行你的安裝指令;
現在ctrl + c
(兩次),退出REPL
(互動式解釋器),然後在再執行你的安裝指令:
npm install jade
好了