Error installing Underscore icons

I am trying to set Underscore characters but getting an error

Unable to find underscore ("npm") in registry. Do you want to try another source? In addition, if you want to contribute to this vise, please help us: https://github.com/typings/registry

I tried different switches based on my research and solutions provided by others, as you can see in the image.

enter image description here Please let me know if I am doing something wrong.

+5
source share
3 answers

The main issue is the resolution issue on my Mac. Your user account must have its own npm installation directory.

Then you can run the command:

typings install dt~underscore --global --save 

You should not see more errors.

+14
source

Below my team works,

 typings install dt~underscore --global --save 

Link - GitHub Link

+4
source

This is the last as of April 2017.

npm install --save @ types / underscore

+1
source

All Articles