Saturday 23 November 2013

Linux Mint 15 Mate haskell install

sudo apt-get install haskell-platform
did not work with error - unable to locate

http://www.haskell.org/platform/linux.html

1.download the source file directly
2.install ghc before installing haskell-platform
3.unzip all the archives and cd into the folder
./configure
make
make install

--above did not work
http://forums.linuxmint.com/viewtopic.php?f=47&t=139641

http://niket-kumar.blogspot.ca/2013/05/ubuntu-1304-how-to-setup-haskell.html

http://askubuntu.com/questions/288201/cannot-determine-current-directory-while-building-haskell-in-13-04

fix:
sudo apt-get install -y libgmp3-dev freeglut3 freeglut3-dev
sudo ln -s /usr/lib/x86_64-linux-gnu/libgmp.so.10 /usr/lib/libgmp.so.3
 
then configure and make install  

No comments:

Post a Comment