我想在 Nao 机器人上使用 Watson 服务 Speech to Text,但我在导入 watson 开发人员云时遇到了一些困难。我已经导入了它,但是每次启动脚本时,都会出现没有模块的错误。我已经导入了一些模块,但我总是有新的错误。这是imorting模块的代码
memory = ALProxy("ALMemory")
filePath = memory.getData("fileName")
try:
import watson_developer_cloud, pysorl,urllib3, ssl, openSSL
except:
behaviorPath =
os.path.abspath(ALFrameManager.getBehaviorPath(self.behaviorId))
packagePath=os.path.dirname(behaviorPath)
libPath=os.path.join(packagePath,'lib')
sys.path.append(libPath)
import json
from watson_developer_cloud.speech_to_text_v1 import SpeechToTextV1
现在我有这个错误
SSLError: Can't connect to HTTPS URL because the SSL module is not availale
但是我导入了ssl。所有代码在 Eclipse 中都可以正常工作,但在 Choregraphe 中它不起作用。
你能帮我理解问题是什么吗?