I\'m getting the following error while installing API Connect toolkit:
sha1-UhOHSxsj+deaxi0QbjKXDirzcn8= integrity checksum failed when using sha1: wa
There are multiple solutions to this problem. I've encountered it many times and always different things helped me.
A. At first try cleaning the cache: npm cache clean --force
then npm install
B. Second you can try npm install --update-binary
C. Third option is to try A and delete node_modules folder and then npm install
D. Fourth option is to uninstall nodejs reboot and reinstall and then try npm install
E. Last of my options which worked for me was to delete npm
and npm-cache
folders in Users%username%\AppData\Roaming
and running npm install
You can try also other combinations usually its best to always do A and clean the cache at least or delete the node_modules folder.