I'm trying to install Powershell in Ubuntu 17.04 as the following these steps:
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
I know I'm using 16.04 packages/built to install. Unfortunately I couldn't find the the 17.04 one.
And here is what error I've got with sudo apt-get install -y powershell
The following packages have unmet dependencies:
powershell : Depends: libicu55 but it is not installable
Then I tried:
apt-cache search libicu
I couldn't find out the libicu55 to install either. Are there any way to install Powershell in Ubuntu 17.04?
