Thursday, April 26, 2018
How fast can you work in excel
https://www.facebook.com/7Second.Riddles/videos/200898747368848/UzpfSTEwMDAwMDc5NzczMzA4NjoxNzEwMTY3MzI5MDE5ODQy/
Monday, April 16, 2018
Troubleshooting with nodejs and npm
I got error when I tried to install rasa-nlu-trainer
$npm i -g rasa-nlu-trainer
error:
npm http GET https://registry.npmjs.org/express
npm ERR! Error: SSL Error: CERT_UNTRUSTED
npm ERR! at ClientRequest.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\request\main.js:409:26)
npm ERR! at ClientRequest.g (events.js:185:14)
npm ERR! at ClientRequest.EventEmitter.emit (events.js:88:17)
solution:
You can bypass https using below commands:
npm config set strict-ssl false
reference:
https://stackoverflow.com/questions/21855035/ssl-error-cert-untrusted-while-using-npm-command
-----------------------------------------------------
To update nodejs and npm:
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
-----------------------------------------------------
"/usr/bin/env: node: No such file or directory"
solution:
ln -s /usr/bin/nodejs /usr/bin/node
Subscribe to:
Posts (Atom)
free online comma separating tool
https://delim.co/#
-
In my current company, I'm using Visual Paradigm for my documentation task. If you go there site, you can either download community and ...
-
One of the functionality in our system is can able to generate a report using Jasper report. We have a Jasper server setup in another ip ad...
-
https://www.liquidweb.com/kb/how-to-install-nvm-node-version-manager-for-node-js-on-ubuntu-12-04-lts/