1,056 views
1 1 vote

I wanted to use Watson Assistant V2 in my following nodejs code, but it cannot be found and gave me error.

var AssistantV2 = require('watson-developer-cloud/assistant/v2'); // Watson SDK

What should I do?

50% Accept Rate Accepted 31 answers out of 62 questions

1 Answer

0 0 votes

You should make sure you already installed the library using npm in your command line:

npm install watson-developer-cloud

Related questions

0 0 votes
1 1 answer
728
728 views
0 0 votes
1 1 answer
1.8k
1.8k views
0 0 votes
1 1 answer
632
632 views
wxeshetu asked Oct 29, 2018
632 views
1 1 vote
1 1 answer
798
798 views
Shahram asked Dec 6, 2018
798 views
I've created a server on Digital Ocean, and employed uWSGI + NGINX to run a Flask application on the Ubuntu server. I need to copy some files from my computer to the serv...