在Jupyter Notebook中使用watson_developer_cloud时出错

时间:2018-09-18 04:03:08

标签: python jupyter-notebook ibm-watson

我正在尝试在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 个答案:

答案 0 :(得分:2)

这里有一些问题。

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示例:https://github.com/watson-developer-cloud/python-sdk/blob/master/examples