1,175 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
850
850 views
0 0 votes
1 1 answer
2.0k
2.0k views
0 0 votes
1 1 answer
731
731 views
wxeshetu asked Oct 29, 2018
731 views
1 1 vote
1 1 answer
995
995 views
Shahram asked Dec 6, 2018
995 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...