I have installed Haskell Platform in Ubuntu 14.04 using
sudo apt-get install haskell-platform
following the instructions from the official website.
The version of GHC installed as a result is 7.6.3.
I would like to update my version of GHC to a higher version. However, if I do something like
sudo apt-get install --only-upgrade ghc
based on this, I get
ghc is already the newest version.
I suppose separately downloading ghc and installing again can cause problems with other packages installed by Haskell Platform?
How can I correctly upgrade GHC?
Thank you.