Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Unfortunately I don't have access to a *nix box at work or at home. The only way I can play with Haskell is on windows. Anyone here using Haskell on Windows? What's your setup?

share|improve this question

8 Answers

up vote 8 down vote accepted

I've used Haskell on Windows, but only when forced to. Not because the combination Haskell+Windows is particularly bad, but just because I don't really like Windows.

My setup was basically the following:

As you can see I was trying to get an environment that was as similar to Unix as possible (without using cygwin, because I find it utterly confusing). Vim is my favourite editor. The reason for Visual Studio was that the C environment shipped with GHC doesn't cover all of Win32API. I used CMake to get a decent build environment.

share|improve this answer
and console was needed why? – ja. Dec 9 '08 at 6:24
1  
The Windows "dos box" is a pile of crap, IMNSHO :-) Console is a properly resizable terminal window. MinGW does come with a terminal, but it mixes in some Unix-ness that isn't always desired. – Magnus Aug 22 '09 at 7:28
Add the powershell to the mix to get a decent shell, and you got a pretty strong developing environment for Haskell on windows. – Raoul Supercopter Mar 6 '10 at 12:36

I suggest The Glasgow Haskell Compiler 6.10.1 Windows Installer.

share|improve this answer
1  
It is out of date. Use Haskell Platform installer instead. – nponeccop Jul 22 '12 at 11:25

Haskell Platform is now more or less the standard distribution of haskell, and it is has a windows installer.

share|improve this answer
The main advantage of Haskell Platform over plain GHC installation is that the Platform contains precompiled packages which is hard to compile on Windows because they require MSys toolchain. – nponeccop Jul 22 '12 at 11:27

GHC is a state-of-the-art, open source, compiler and interactive environment for the functional language Haskell.

There is a Windows installer for GHC, but it for Version 6.4.2 .

A Windows .exe (not an .msi installer) for version 6.10.1 is at http://www.haskell.org/ghc/dist/6.10.1/ It is not clear when the current (GHC 6.10.1) version will offer a Windows installer.

share|improve this answer

I recall using hugs with some success a while ago. I was just playing around though.

share|improve this answer
The problem with hugs is that is... well a bit out of data. I was using ghc and then I had to come back on hugs for university course. I felt how many things is missing (to be honest - even downgrade from 6.10 to 6.8 was felt). – Maciej Piechotka Mar 6 '10 at 11:28

Or You could partition your hard-drive a duel boot between linux and windows :)

Doesn't answer your question, but it is an alternative.

share|improve this answer
I second this suggestion. I've just install a new partition with Fedora 11, and Haskell. It took me about an hour (most of which was just machine time). A direct Windows installation of Haskell requires Cygwin, or MinGW. I've used both of these in the past. They work OK, but require a lot of fiddling, and, last time I checked, didn't work under Vista. If you've never installed a Linux partition, it may seem scary, but I think you'll find it easier than Cygwin or MinGW + Haskell. – Javaman59 Oct 21 '09 at 8:04

You could install Sun's VirtualBox, and install Linux on it.

share|improve this answer

I based on Magnus solution. I have to state that I'm normally GNU/Linux user and I had to port low level packages (like this one).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.