问题描述
我试图在Jupyter Notebook中使用Watson Developer,但是由于某种原因,我遇到了这样的错误。
This is the import part:
import json
from watson_developer_cloud import AlchemyLanguageV1
之后,我得到这样的错误:
No module named 'watson_developer_cloud'
我使用命令外壳和ANACONDA提示符安装了Watson Developer云。 这是我使用的命令,它已成功安装。
pip install -I watson-developer-cloud==1.0.0
导入Watson Developer时,我是否需要配置任何东西以避免在Jupyter Notebook中发生此错误。
1楼
这里有一些问题。
1.您可以使用的安装是:
pip install --upgrade watson-developer-cloud
撰写本文时,当前版本为2.0.1
,而不是1.0版
2.炼金术不再存在。 您应该改为使用NLU。 SDK中包含示例代码。
from watson_developer_cloud import NaturalLanguageUnderstandingV1
from watson_developer_cloud.natural_language_understanding_v1 import Features, EntitiesOptions, KeywordsOptions
nlu = NaturalLanguageUnderstandingV1(
version='2017-02-27',
username='USERNAME',
password='PASSWORD')
features = Features(entities=EntitiesOptions(), keywords=KeywordsOptions())
response = nlu.analyze(language='en',
text='The goal is not to be perfect by the end, the goal is to be better today. - Simon Sinek',
features=features)
print(response)
您可以在此处查看SDK示例: :