npm error 404 not found

user2991421

I'm trying to install a npm package using:

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/
tech4him

NPM is case-sensitive, you need to use a lowercase "SDK": npm install microsoft-speech-browser-sdk.

NPM Issue #3914 provides more information on why.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related