- Xquartz For Mac
- Install Wine Mac Os
- Install App Wine Machine
- Brew Install Wine
- Mac Install Wine
- Install App Wine Mac 10
Installing Wine on Apple Mac. This tutorial explains how to install Wine application on Apple Mac. This application allows to run Embird (native Windows. Thus, the question is how to install and use a free program for running Windows apps on MacBook Pro, MacBook Air, and other Apple computers.
Wine logo
Downloading and Installing Wine
The easiest way to download and install Wine is to download the pre-compiled builds of wine from PlayOnMac. Getting Wine this way saves you from having to install the Apple Developer Tools (around 4GB) and compiling Wine yourself (which takes quite a long time).
Look for the package with the largest number (e.g., 1.3.23); the list on the downloads page doesn't necessarily have the newest version of Wine at the top.
Once it's downloaded (the tar.gz file should be around 21MB), decompress the archive, rename the resulting folder to 'wine', and move it to your home folder (or wherever you like).
Wine should be usable now (just point to the 'wine' binary in Terminal.app), but there are a few things you can do to make using it a little easier.
Setting up Wine
Now that Wine is installed, you may need to do a few things in order to get Wine completely set up.
1. Make Wine accessible from any directory
This will make it so you can use Wine in any directory without having to specify its complete path. Here's an example of what I mean:
Before:
After:
Doesn't the second one look easier? It keeps us from having always to specify the path to the Wine binary (~/wine/bin/wine
) whenever we want to use Wine.
Here's how to do it:
- Open Terminal.app
- Type
open ~/.profile
and press return. This should open a document in your default text editor (likely TextEdit.app)- If the file doesn't exist:
- Type
open ~/.bash_profile
and press return - Add
source ~/.profile
to the end of that file - In Terminal, type
touch ~/.profile && open ~/.profile
and press return
- Type
- If the file doesn't exist:
- Add the following lines to the end of the file, replacing
[username]
with your username:- Note: this could be put into .bash_profile, but I recommend keeping personal additions in .profile so that you can always delete the .profile file if something goes awry
- Save the file
- Quit and reopen Terminal.app
- When it opens, Terminal checks .bash_profile and .profile for things like PATH variables, but won't know they're there unless you restart the application
- Type
which wine
and press return to test whether everything worked properly- This should return the same path that you specified in the .profile file
- That's it!
Now, whenever you type wine
in the Terminal, it will know that you mean ~/wine/bin/wine
. The same goes for all executables in that folder. If you want to configure Wine, for instance, all you have to do is enter winecfg
in a Terminal window, and the Wine configuration window will open.
If you get an error when trying to run winecfg
, read on:
2. Fix the 'failed to load libX11.6.dylib' error
Once you've installed Wine and added its binaries to your path, you might need to give your Terminal a little more information in order for it to be able to use Wine properly.
When running winecfg
or using Wine some other way, you might come up with some of the following errors:
- err:x11drv:process_attach failed to load libX11.6.dylib: dlopen(libX11.6.dylib, 266): image not found
- Application tried to create a window, but no driver could be loaded.
- Make sure that your X server is running and that $DISPLAY is set correctly.
Luckily, there's an easy fix:
- Open your .profile file (run
open ~/.profile
in Terminal) - Enter the following into your .profile file:
- Save and close .profile
- Restart Terminal.app
- That's it!
How to configure Wine
Xquartz For Mac
That's easy: run winecfg
in Terminal.
How to launch a program with Wine
The part we've all been waiting for! Here are the Terminal commands for Wine:
- For an EXE file:
wine Application.exe
(you can drag-and-drop the file onto the Terminal window to get the path) - For an MSI file:
wine start Installer.msi
Here's a video demonstrating how easy it is to install a Windows program on your Mac using Wine:
This video shows the installation process of Notepad++. Some applications don't need to be installed and run directly from the .EXE file.
For installed apps, you'd better know where they're installed if you want to use them again! Read on:
Where Wine files are stored
Wine files are stored in a hidden folder called .wine
:
Hidden files and folders are hidden in OS X, so to open this folder in Finder, just use the open
command in Terminal:
Install Wine Mac Os
Here you'll see some files and probably two folders, one called 'dosdevices' and the other called 'drive_c'. 'drive_c' is the C: drive in Windows, like 'Macintosh HD' on a Mac.
To get right to where the applications are installed, use this command:
Install App Wine Machine
That will open the Windows 'Program Files' folder in Finder so you can browse your installed Windows programs.
WineConf Call for Hosts
This is a call for proposals to host the next WineConf sometime this year. Ideally proposals would present;
- Proposed dates
- Proposed city
- Information on potential venues and travel
We'll need to choose a host relatively quickly as it does take time to plan and book the event. I'm hoping we can settle on a host by the end of February but ultimately that decision goes to the Wine Committee. Questions, comments, concerns can be posted on the WineConf mailing list. A draft of a guide to hosting has been started on the wiki [1]. Please take a look to get a sense of what is involved in hosting the conference.
1. https://wiki.winehq.org/Organising_WineConf
News and Updates
April 20, 2020
The Wine maintenance release 4.0.4 is now available.
What's new in this release:
- Various bug fixes
The source is available now.Binary packages are in the process of being built, and will appear soon at their respective download locations.
Brew Install Wine
April 10, 2020
The Wine development release 5.6 is now available.
What's new in this release:
Mac Install Wine
- Still more Media Foundation work.
- Improvements to Active Directory LDAP support.
- A few more modules converted to PE.
- Improvements to gdb proxy mode.
- Various bug fixes.
The source is available now.Binary packages are in the process of being built, and will appear soon at their respective download locations.
March 27, 2020
The Wine development release 5.5 is now available.
Install App Wine Mac 10
What's new in this release:
- Builtin libraries use the new UCRTBase C runtime.
- Compatibility mode used when reporting Windows version.
- Better support for debug information in PE files.
- Support for linguistic case mappings.
- More attributes supported in WebServices.
- Various bug fixes.
The source is available now.Binary packages are in the process of being built, and will appear soon at their respective download locations.