On my Mac (Snow Leopard, 10.6.8), I\'m using a modified version of Emacs 24.2 provided here to utilize Emacs Speaks Statistics (ESS) from the downloads page. Emacs works, but I
On windows I had to do the following to start Ispell process:
Add the code shown below to your init.el file
Run aspell installer
Start emacs again, the error should not come up.
(require 'package)
(add-to-list 'package-archives
'("MELPA Stable" . "http://stable.melpa.org/packages/") t)
(package-initialize)
(package-refresh-contents)
(package-install 'flycheck)
(global-flycheck-mode)
(use-package flycheck
:ensure t
:init
(global-flycheck-mode t))
(setq ispell-program-name "C:\\Program Files (x86)\\Aspell\\bin\\aspell.exe"
You many not have to do all the above but this is what worked for me on Emacs running on Windows 7.