我已经在 ubuntu 16.04 中安装了 powershell,但是当我在终端中输入 powershell 时,它说找不到命令,我该如何解决这个问题?

我已经在 ubuntu 16.04 中安装了 powershell,但是当我在终端中输入 powershell 时,它说找不到命令,我该如何解决这个问题?

我已经powershellpowershell_6.0.0-alpha.9-1ubuntu1.16.04.1_amd64.debGitHub 下载的包中安装了它并输入了以下命令:

sudo apt-get install libunwind8 libicu55
sudo dpkg -i powershell_6.0.0-beta.9-1.ubuntu.16.04_amd64.deb

但是当我powershell在终端上运行时,它说依赖项未安装。所以我删除powershell

sudo apt autoremove

(清除未满足的依赖关系)和

sudo apt purge powershell

然后我使用以下命令再次开始安装

curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -

curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
sudo apt-get update
sudo apt-get install -y powershell

但安装完成后,我想powershell通过在终端上输入来运行它,但它说command not found

在此处输入图片描述

我该如何解决这个问题?

答案1

启动 powershell 的正确命令pwsh不是powershell

有关完整安装,请参阅安装 Powershell

答案2

好的,我明白了这里使用命令:

pwsh

相关内容