Azure ML Studio 执行 Python 脚本错误 - 没有名为“azure.cognitiveservices”的模块
Posted
技术标签:
【中文标题】Azure ML Studio 执行 Python 脚本错误 - 没有名为“azure.cognitiveservices”的模块【英文标题】:Azure ML Studio Execute Python Script Error - No module named 'azure.cognitiveservices' 【发布时间】:2021-08-28 07:20:13 【问题描述】:运行“执行 Python 脚本”时,我在 Azure ML Studio 中遇到错误 错误 - 没有名为“azure.cognitiveservices”的模块
真的很奇怪为什么在azure里面找不到azure?
但是,当我通过 Jupyter Notebook 运行相同的 python 脚本时,它可以正常工作
【问题讨论】:
【参考方案1】:执行 Python 脚本包含此 list 中提到的预安装包。
因此,在您的情况下,认知服务不包括在内 - 因此出现错误。
您可以通过包含以下代码来安装软件包
import os
os.system(f"pip install <Packagename>")
【讨论】:
以上是关于Azure ML Studio 执行 Python 脚本错误 - 没有名为“azure.cognitiveservices”的模块的主要内容,如果未能解决你的问题,请参考以下文章