Mono Package for Wine is not installed
By Sarah Rodriguez •
Wine is saying that Mono package is not installed, but I installed it with Terminal by:
sudo apt-get install mono-completeWhat should I do?
34 Answers
Do the following to install wine-mono:
- Download wine-mono.msi from the official WineHQ site.
- Type
wine64 uninstaller. - Press install from the uninstaller GUI and select the downloaded .msi package.
- Done!
Installing .NET instead should work as well. For example by the following commands in a terminal:
sudo apt-get install winetricks
winetricks dotnet45 3 Other answers were not working for me on 18.04 LTS with winehq-stable package.
The workaround I found was to recreate wine32 and wine64 prefixes and install wine-mono on that with the automatic prompt.
# Create dir for 32 bit prefix mkdir ~/.wine32 # destroy default configuration (64 bit prefix) rm -rf ~/.wine # Initial setup (create prefixes) WINEPREFIX="$HOME/.wine32" WINEARCH=win32 wine wineboot WINEPREFIX="$HOME/.wine" WINEARCH=win64 wine64 wineboot # To install dotnet35 on 32-bit prefix WINEPREFIX="$HOME/.wine32" WINEARCH=win32 winetricks dotnet35 You can easily download and configure with Synaptic Package Manager :
- open Synaptic and search for msitools
- mark for installation and click apply.