I've been downloaded a file from MonoDevelop website but it couldn't execute in my ubuntu, how to open that file?
filename is "monodevelop.flatpakref"
I've been downloaded a file from MonoDevelop website but it couldn't execute in my ubuntu, how to open that file?
filename is "monodevelop.flatpakref"
Based on burhanuddin abbas' comment there's a problem on Ubuntu 14.04.
Unable to locate package flatpak , because it is not supported for ubuntu 14.04 . Visit here for more details
Installation of flatpak
sudo add-apt-repository ppa:alexlarsson/flatpak
sudo apt update
sudo apt install flatpak
(Optional) Adding the flathub repository
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Installation of MonoDevelop with flatpakref file
flatpak install monodevelop.flatpakref
Running the application
flatpak run com.xamarin.MonoDevelop
(probably, not tested, based on @purlantov answer).
Source: OMG! Ubuntu: 7 Flatpak Apps You Can Install Right Now from Flathub.
A graphical way to install Flatpak app using .flatpakref file starts with installing flatpak plugin to add flatpak support into default software center.
For Debian-based GNOME desktop,
sudo apt install gnome-software-plugin-flatpak
For Debian-based KDE desktop,
sudo apt install plasma-discover-plugin-flatpak
You can change the package manager based on your supported Linux distro. However, most Linux distro comes with pre-configured support for Flatpak.
Now if you search for app in your software center, you'll notice two application one with source pointing to flathub repo i.e. flatpak app.
Nonetheless, if you've already downloaded the .flatpakref file, it's better to run a single command to install a flatpak app.
flatpak install --from <app-id>.flatpakref
This is very helpfull: Install MonoDevelop preview via FlatPak
It worked for me but any time that you want to start MonoDevelop you have to type in console:
flatpak run com.xamarin.MonoDevelop
And there is lot of things that do not work properly. I suggest you to compile it yourself as shown in this video, which helped me a lot.
Unfortunately there are no longer pre-compiled packages for Ubuntu.
As the documentation suggests, run:
sudo apt install flatpak
then Install the Software Flatpak plugin:
sudo apt install gnome-software-plugin-flatpak
Possibly install the Flathub repo:
flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
and restart.