1,464 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
1.1k
1.1k views
0 0 votes
1 1 answer
2.3k
2.3k views
0 0 votes
1 1 answer
1.0k
1.0k views
wxeshetu asked Oct 29, 2018
1,014 views
1 1 vote
1 1 answer
1.4k
1.4k views
Shahram asked Dec 6, 2018
1,387 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...