简体   繁体   English

找不到npm错误404

[英]npm error 404 not found

I'm trying to install a npm package using: 我正在尝试使用以下方法安装npm软件包:

npm install microsoft-speech-browser-SDK

I get the following error: 我收到以下错误:

npm ERR! code E404
npm ERR! 404 Not Found: microsoft-speech-browser-SDK@latest

I have also tried setting the registry using both: 我也尝试同时使用两种设置注册表:

npm set registry http://registry.npmjs.org/
npm set registry https://registry.npmjs.org/

NPM is case-sensitive, you need to use a lowercase "SDK": npm install microsoft-speech-browser-sdk . NPM区分大小写,您需要使用小写的“ SDK”: npm install microsoft-speech-browser-sdk

NPM Issue #3914 provides more information on why. NPM问题#3914提供了有关原因的更多信息。

名称区分大小写microsoft-speech-browser-sdk ,因此请尝试:

npm i microsoft-speech-browser-sdk

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM