I've tried to install Emacs on Windows (7) with msys2, however, I'm not sure if it worked. In any event, I can't find it on my machine. The install (following these instructions seems to go fine -- but then no Emacs.
Asked
Active
Viewed 6,468 times
4
2 Answers
3
If you have chosen all the default paths while installing msys (pacman), you can find 'emacs.exe' under C:\msys64\mingw64\bin\ on your windows machine as the pacman command installs it under the same catalog as itself. Go there and double click 'emacs.exe' app to launch it. You can also right click on the executable file(emacs.exe) and pin it to either start or task bar for the future shortcuts.

Singiton
- 31
- 2
0
# bash# pacman -Ss emacs
mingw64/mingw-w64-x86_64-emacs 28.1-1 [installed]
The extensible, customizable, self-documenting, real-time display editor (mingw-w64)
msys/emacs 27.2-1 (editors)
The extensible, customizable, self-documenting, real-time display editor (msys2)
# where.exe runemacs.exe
C:\opt\msys64\mingw64\bin\runemacs.exe

gavenkoa
- 3,452
- 20
- 37
-
pacman -Ss emacs
->mingw64/mingw-w64-x86_64-emacs 28.2-2 [installed]
$ where emacs
->INFO: Could not find files for the given pattern(s).
$ where runemacs
->INFO: Could not find files for the given pattern(s).
– Dmitry Avtonomov Dec 23 '22 at 23:44 -
1@DmitryAvtonomov You launched MSYS2
mintty
while NT Emacs is installed in Mingw64 environment, Please launchmingw64.exe
or update yourPATH
. – gavenkoa Dec 24 '22 at 09:37 -
1
runemacs.exe
in thebin
directory. If you want to build it yourself, then here is a link to a couple of tutorials -- How to build Emacs master branch (aka trunk) on MS-Windows -- http://emacs.stackexchange.com/questions/16971/how-to-build-emacs-master-branch-aka-trunk-on-ms-windows – lawlist Jun 09 '16 at 17:48