无法通过 npm 安装 @microsoft/mgt

Can't install @microsoft/mgt via npm

各位,

尝试通过

安装 MS Graph 工具包时

npm install @microsoft/mgt

我收到找不到 typescript-typings 包的错误消息:

PS C:\Users\dev\Dev\Webpart> npm install @microsoft/mgt
npm ERR! path git
npm ERR! code ENOENT
npm ERR! errno ENOENT
npm ERR! syscall spawn git
npm ERR! enoent Error while executing:
npm ERR! enoent undefined ls-remote -h -t ssh://git@github.com/microsoftgraph/msgraph-typescript-typings.git
npm ERR! enoent
npm ERR! enoent
npm ERR! enoent spawn git ENOENT
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\dev\AppData\Roaming\npm-cache_logs20-03-11T11_44_15_649Z-debug.log

我通过 nodist 尝试了几个节点版本。并且还启动了一个具有相同结果的新项目。 我使用 Windows 10 (1903).

感谢您的帮助。

看起来你可能没有安装 git - 你需要在你的机器上安装 git 才能让它工作。

undefined ls-remote -h -t ssh://git@github.com/microsoftgraph/msgraph-typescript-typings.git

应该是

git ls-remote -h -t ssh://git@github.com/microsoftgraph/msgraph-typescript-typings.git

存在与 git 路径相关的错误。