我正在尝试按照以下步骤在 Ubuntu 17.04 中安装 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
我知道我正在使用 16.04 软件包/内置安装。不幸的是,我找不到 17.04 的那个。
这是我遇到的错误sudo apt-get install -y powershell
The following packages have unmet dependencies:
powershell : Depends: libicu55 but it is not installable
然后我尝试了:
apt-cache search libicu
我也找不到要安装的 libicu55。有没有办法在 Ubuntu 17.04 中安装 Powershell?