在 Jupyter Notebook 中使用 watson_developer_cloud 时出错
Getting error while using watson_developer_cloud in Jupyter Notebook
我正在尝试在我的 Jupyter Notebook 中使用 Watson Developer,但由于某种原因,我收到了这样的错误。
This is the import part:
import json
from watson_developer_cloud import AlchemyLanguageV1
在此之后我得到这样的错误:
No module named 'watson_developer_cloud'
我使用命令 shell 和 ANACONDA 提示符安装了 Watson Developer 云。这是我使用的命令,它安装成功。
pip install -I watson-developer-cloud==1.0.0
在导入 Watson Developer 时,我是否需要配置任何东西来避免我的 Jupyter Notebook 中出现此错误。
这里有一些问题。
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
我正在尝试在我的 Jupyter Notebook 中使用 Watson Developer,但由于某种原因,我收到了这样的错误。
This is the import part:
import json
from watson_developer_cloud import AlchemyLanguageV1
在此之后我得到这样的错误:
No module named 'watson_developer_cloud'
我使用命令 shell 和 ANACONDA 提示符安装了 Watson Developer 云。这是我使用的命令,它安装成功。
pip install -I watson-developer-cloud==1.0.0
在导入 Watson Developer 时,我是否需要配置任何东西来避免我的 Jupyter Notebook 中出现此错误。
这里有一些问题。
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