<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">On Thu, Jul 23, 2015 at 1:15 AM Heinrich Apfelmus <<a href="mailto:apfelmus@quantentunnel.de">apfelmus@quantentunnel.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Mark Lentczner wrote:<br>
> *tl;dr: We'd like to incorporate stack into Haskell Platform, and stop<br>
> shipping pre-built packages, so we banish cabal hell, and have a single<br>
> common way to 'get Haskell' that just works.*<br>
><br>
> [..]<br>
><br>
> We think this plan solves many different community needs:<br>
><br>
>    - We have a clear way to "get Haskell" that works for a wide variety of<br>
>    use cases.<br>
>    - HP installer gets much smaller, and about as minimal as a working<br>
>    installation can get.<br>
>    - By leaving most packages out of the global database, users of<br>
>    cabal-install, will now have far fewer problems. Sandbox builds should now<br>
>    never give users "cabal hell" like warnings.<br>
>    - By building and installing the Platform packages into it's own package<br>
>    db, users get the benefit of building and installing these common packages<br>
>    only once per system, yet can easily bypass them for any given project if<br>
>    desired.<br>
>    - Since the Platform packages are now built and installed as needed,<br>
>    installing on smaller systems or servers without OpenGL will work.<br>
<br>
Sounds great to me! Personally, I do not mind how the Haskell Platform<br>
achieves these goals; I will simply adapt to whatever tools the platform<br>
happens to install on my machine.<br>
<br>
Hopefully, they come with suitable documentation. For instance, one<br>
thing I don't understand about  stack  yet is in which location it<br>
"magically" installs GHC and packages, and how I can invoke `ghci` from<br>
these locations. Somehow, I was unable to understand this from the FAQ.<br>
<br>
<br><br></blockquote><div><br></div><div>I think this FAQ entry should help[1] on the first question:<br><br>> Note that <code>stack setup</code> installs GHC into <code>~/.stack/programs/$platform/ghc-$version/</code> and not a global location.<br><br></div><div>For the second question: either `stack ghci` or `stack exec ghci` should achieve what you're looking for. The former is a bit more experimental, and does more intelligent stuff at the project level as far as loading up your code. The latter simply runs the ghci command with appropriate PATH and GHC_PACKAGE_PATH environment variables set.<br></div><div><br>[1] <a href="https://github.com/commercialhaskell/stack/wiki/FAQ#i-already-have-ghc-installed-can-i-still-use-stack">https://github.com/commercialhaskell/stack/wiki/FAQ#i-already-have-ghc-installed-can-i-still-use-stack</a> <br></div></div></div>