你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
在 macOS 上安装 Azure PowerShell
本文介绍如何从 macOS 上的 PowerShell 库安装 Az PowerShell 模块。
Az PowerShell 模块是一个汇总模块。 安装它会下载通用版 Az PowerShell 模块,并使其 cmdlet 可供使用。
先决条件
- 安装受支持的 PowerShell 版本 7 或更高版本
安装
打开终端或其他 shell 主机应用程序并运行 pwsh
以启动 PowerShell。
使用 Install-Module cmdlet 安装 Az PowerShell 模块:
Install-Module -Name Az -Repository PSGallery -Force
更新 Azure PowerShell 模块
使用 Update-Module cmdlet 更新到最新版本的 Az PowerShell 模块。
Update-Module -Name Az -Force
使用 Update-Module
更新 Az PowerShell 模块不会从系统中删除旧版本的 Az PowerShell 模块。
卸载
若要从系统中删除 Az PowerShell 模块,请参阅 卸载 Azure PowerShell 模块。
登录
若要开始使用 Az PowerShell 模块管理 Azure 资源,请启动 PowerShell 会话并运行 Connect-AzAccount
以登录到 Azure:
Connect-AzAccount
使用 Azure 帐户登录凭据登录到打开的浏览器窗口。
对于启动的每个新的 PowerShell 会话,需要重复此步骤。 若要了解如何跨 PowerShell 会话保留 Azure 登录,请参阅 Azure PowerShell 上下文对象。
故障排除
对于 Az PowerShell 模块常见安装问题的解决方案,请参阅 解决 Az PowerShell 模块的安装问题。
提供反馈
若要提交有关 Az PowerShell 模块的问题,请参阅:在 GitHub 上提问。
若要在 PowerShell 会话中提供反馈,请使用 Send-Feedback cmdlet。
后续步骤
若要详细了解如何使用 Az PowerShell 模块管理 Azure 资源,请参阅 Azure PowerShell 入门。