本文档介绍如何解决在设置环境时可能遇到的错误。
导入 Vertex AI SDK for Python 时出错
如果您无法导入 Vertex AI SDK for Python,可能是因为以下问题之一:
过时的 Vertex AI SDK for Python 版本
问题:
您收到类似于以下内容的错误消息:
ImportError: cannot import name 'reasoning_engines' from 'vertexai.preview'
可能的原因:
如果您的 google-cloud-aiplatform
软件包的版本早于 1.47.0
,可能会出现这种情况。如需检查 google-cloud-aiplatform
软件包的版本,请在终端中运行以下命令:
pip show google-cloud-aiplatform
推荐的解决方案:
在终端中运行以下命令以更新 google-cloud-aiplatform
软件包:
pip install google-cloud-aiplatform --upgrade
通过运行以下命令,验证您的更新版本是否为 1.47.0
或更高版本:
pip show google-cloud-aiplatform
如果您在使用笔记本实例(例如 Jupyter、Colab 或 Workbench),则可能需要重启运行时才能使用更新后的软件包。