如何使用 Alexa Skill Kit SDK 导入 Python 个外部库?
How to import Python external libraries with Alexa Skill Kit SDK?
我正在使用 Amazon Developer Console 上的 Alexa Skill Kit SDK 开发一项技能。我的代码有 import numpy
,它会产生运行时错误。
我搜索过的所有解决方案都是关于将 numpy 源代码上传到 AWS,我发现它与 Alexa Skill Kit 无关。
我认为您正在 python 中构建 Alexa 托管技能。
正如 docs 所说:
You can use Python to install dependencies. You add dependencies in
the requirements.txt file. An example of the code is shown below:
boto3==1.9.216
我正在使用 Amazon Developer Console 上的 Alexa Skill Kit SDK 开发一项技能。我的代码有 import numpy
,它会产生运行时错误。
我搜索过的所有解决方案都是关于将 numpy 源代码上传到 AWS,我发现它与 Alexa Skill Kit 无关。
我认为您正在 python 中构建 Alexa 托管技能。
正如 docs 所说:
You can use Python to install dependencies. You add dependencies in the requirements.txt file. An example of the code is shown below:
boto3==1.9.216