What are the possibilities, if any, for getting offline docs for Haskell core libraries (and maybe more)?
Sometimes I take my laptop to the coffee-shop where there is no wifi, and it would be nice having something like Hoogle but for offline use.
|
What are the possibilities, if any, for getting offline docs for Haskell core libraries (and maybe more)? Sometimes I take my laptop to the coffee-shop where there is no wifi, and it would be nice having something like Hoogle but for offline use. |
||||
|
|
|
Hoogle is available offline, installable from Cabal: http://hackage.haskell.org/package/hoogle Usage instructions are at http://www.haskell.org/haskellwiki/Hoogle#Command_Line_Search_Flags. Usage:
Create a default database with EDIT: A session of usage after installing Hoogle locally:
I ran into an error here...apparently it is related to the version of Cabal, so I updated that (http://hackage.haskell.org/trac/hackage/ticket/811). That didn't help, so I ran EDIT2: This seems to fix the problem (for me):
|
|||||||||||||||
|
|
If you install the Haskell Platform it includes the GHC docs and the GHC library docs (which cover the core libraries). On Windows they are on the Start Menu under "All Programs|Haskell Platform". |
|||||||||
|
|
Edit your ~/.cabal/config file. Look for the line (probably commented out) that says Look around a little more in that same config file and you'll find things options like doc-index-file, docdir, datadir, prefix, etc that allow you to configure where the documentation is stored. |
|||
|
|
|
The HTML documentation can be downloaded as .tar.bz2 from the haskell website: http://www.haskell.org/ghc/docs/ I just downloaded http://www.haskell.org/ghc/docs/7.6.3/libraries.html.tar.bz2 and it's exactly what I've been hoping for. |
|||
|
|