📜  powershell 添加到环境路径 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:45:38.051000             🧑  作者: Mango

PowerShell 添加到环境路径 - Shell/Bash

简介

PowerShell 是由 Microsoft 发布的一种脚本语言及其相应的命令行 SHELL 程序。它可以在跨平台的 Windows、Linux、macOS 操作系统上执行。想要在任何地方使用 PowerShell,需要将其添加到环境路径中。

本文将介绍如何将 PowerShell 添加到 Shell/Bash 环境路径中,以便能够在终端中快速启动 PowerShell。

在 Windows 上安装 PowerShell

如果您使用的是 Windows 操作系统,那么 PowerShell 已经随操作系统一起安装了。在 Windows 10 上,可以通过开始菜单或搜索菜单中查找 PowerShell 来启动它。如果您的计算机上未安装 PowerShell,请前往 Microsoft 的 PowerShell 下载页面进行下载和安装。

在 Linux/macOS 上安装 PowerShell

如果您使用的是 Linux/macOS 操作系统,则需要先安装 PowerShell。

Ubuntu

在 Ubuntu 上,可以通过以下命令来安装 PowerShell:

sudo apt-get install -y powershell
CentOS

在 CentOS 上,可以通过以下命令来安装 PowerShell:

sudo yum install -y powershell
macOS

在 macOS 上,可以通过 Homebrew 包管理器来安装 PowerShell。首先需要安装 Homebrew,然后执行以下命令:

brew cask install powershell
将 PowerShell 添加到环境路径中

将 PowerShell 添加到环境路径中,可以使您在终端中快速启动 PowerShell,而无需指定完整的路径。以下是将 PowerShell 添加到环境路径中的步骤:

Windows
  1. 打开“开始菜单”并搜索“环境变量”。
  2. 点击“编辑系统环境变量”。
  3. 在“系统属性”窗口中,单击“环境变量”按钮。
  4. 在“系统变量”下,找到 Path 变量,单击“编辑”按钮。
  5. 在“编辑环境变量”窗口中,单击“新建”按钮。
  6. 在“新建用户变量”中,添加 PowerShell 安装目录的路径(例如,C:\Program Files\PowerShell\7)。
  7. 确认并保存更改。
  8. 打开新的终端窗口,输入“pwsh”,您应该可以看到 PowerShell 引用程序已经启动了。
Linux/macOS
  1. 打开终端窗口。
  2. 执行以下命令(将 "/usr/bin/pwsh" 替换为您的 PowerShell 安装路径):
echo 'export PATH="/usr/bin/pwsh:$PATH"' >> ~/.bash_profile
  1. 使更改生效:
source ~/.bash_profile
  1. 打开新的终端窗口,输入“pwsh”,您应该可以看到 PowerShell 引用程序已经启动了。
结论

通过将 PowerShell 添加到 Shell/Bash 环境路径中,可以在任何地方快速启动 PowerShell。本文提供了在 Windows、Linux 和 macOS 上安装和配置 PowerShell 的基本介绍。