📅  最后修改于: 2023-12-03 14:45:38.051000             🧑  作者: Mango
PowerShell 是由 Microsoft 发布的一种脚本语言及其相应的命令行 SHELL 程序。它可以在跨平台的 Windows、Linux、macOS 操作系统上执行。想要在任何地方使用 PowerShell,需要将其添加到环境路径中。
本文将介绍如何将 PowerShell 添加到 Shell/Bash 环境路径中,以便能够在终端中快速启动 PowerShell。
如果您使用的是 Windows 操作系统,那么 PowerShell 已经随操作系统一起安装了。在 Windows 10 上,可以通过开始菜单或搜索菜单中查找 PowerShell 来启动它。如果您的计算机上未安装 PowerShell,请前往 Microsoft 的 PowerShell 下载页面进行下载和安装。
如果您使用的是 Linux/macOS 操作系统,则需要先安装 PowerShell。
在 Ubuntu 上,可以通过以下命令来安装 PowerShell:
sudo apt-get install -y powershell
在 CentOS 上,可以通过以下命令来安装 PowerShell:
sudo yum install -y powershell
在 macOS 上,可以通过 Homebrew 包管理器来安装 PowerShell。首先需要安装 Homebrew,然后执行以下命令:
brew cask install powershell
将 PowerShell 添加到环境路径中,可以使您在终端中快速启动 PowerShell,而无需指定完整的路径。以下是将 PowerShell 添加到环境路径中的步骤:
echo 'export PATH="/usr/bin/pwsh:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
通过将 PowerShell 添加到 Shell/Bash 环境路径中,可以在任何地方快速启动 PowerShell。本文提供了在 Windows、Linux 和 macOS 上安装和配置 PowerShell 的基本介绍。