I’m a cross-platform dev writing apps in .NET C# console & AvaloniaUI.
OM has been a great platform for doing this work.
Just wanted to mention that I wanted to install Powershell but couldn’t find it in repositories, but I was able to download it and install it.
Here are the steps (in case anyone else wants to run it)
-
Download Powershell RPM : https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-1.rh.x86_64.rpm
-
The following command was failing & I couldn’t get it working:
sudo dnf install ./powershell-7.6.1-1.rh.x86_64.rpm -
You’ll see some errors that are related to missing libraries:
-
I installed libicu via : sudo dnf install libicudata.x86_64
-
I also installed ssl libraries
-
But it still failed the same way when installing powershell.
-
Finally, I found the following command and it worked great:
sudo rpm -ivh --nodeps powershell-7.6.1-1.rh.x86_64.rpm
The dependencies are already there so once you start powershell ($ pwsh ) everything will work fine.
Ok, that’s it, just thought I’d post it here in case anyone else needs it.
