6.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	| title | 
|---|
| hledger Installation Guide | 
Installation Guide
hledger works on linux, mac and windows. You can fund ready-to-run binaries of the latest release - see the download page.
Otherwise, build the latest release from Hackage using cabal-install. Ensure you have GHC 7.0 or greater or the Haskell Platform installed, then:
$ cabal update
$ cabal install hledger
To also install the web interface, do:
$ cabal install hledger-web
Then try it:
$ hledger
If you get “hledger not found” or similar, you should add cabal’s bin directory to your PATH environment variable. Eg on unix-like systems, something like:
$ echo 'export PATH=$PATH:~/cabal/bin' >> ~/.bash_profile
$ source ~/.bash_profile
To build the latest development version do:
$ cabal update
$ darcs get --lazy http://hub.darcs.net/simon/hledger
$ cd hledger
$ make install (or do cabal install inside hledger-lib/, hledger/ etc.)
Some add-on packages are available on Hackage: hledger-vty, hledger-chart, hledger-interest. These are without an active maintainer, and/or platform-specific, so installing them may be harder.
Note: to use non-ascii characters like £, you might need to configure a suitable locale.
Troubleshooting
There are a lot of ways things can go wrong. Here are some known issues and things to try. Please also seek support from the IRC channel, mail list or bug tracker.
Starting from the top, consider whether each of these might apply to you. Tip: blindly reinstalling/upgrading everything in sight probably won’t work, it’s better to go in small steps and understand the problem, or get help.
- Did you cabal update ? 
 If not,- cabal updateand try again.
- Do you have a new enough version of GHC ? 
 Run- ghc --version. hledger requires GHC 7.0 or greater (on some platforms, 7.2.1 can be helpful).
- Do you have a new enough version of cabal ? 
 Avoid ancient versions.- cabal --versionshould report at least 0.10 (and 0.14 is much better). You may be able to upgrade it with:- $ cabal update $ cabal install cabal-install-0.14
- Are your installed GHC/cabal packages in good repair ? 
 Run- ghc-pkg check. If it reports problems, some of your packages have become inconsistent, and you should fix these first. ghc-pkg-clean is an easy way.
- 
- try to understand which packages to remove (with - ghc-pkg unregister) or which constraints to add (with- --constraint 'PKG == ...') to help cabal find a solution
- install into a fresh environment created with virthualenv or cabal-dev 
- or (easiest) erase your installed packages with ghc-pkg-reset and try again. 
 
- Dependency or compilation error in one of the new packages ? 
 If cabal starts downloading and building packages and then terminates with an error, look at the output carefully and identify the problem package(s). If necessary, add- -v2or- -v3for more verbose output. You can install the new packages one at a time to troubleshoot, but remember cabal is smarter when installing all packages at once.- Often the problem is that you need to install a particular C library using your platform’s package management system. Or the dependencies specified on a package may need updating. Or there may be a compilation error. If you find an error in a hledger package, check the recent commits to see if the latest development version might have a fix. 
- ExitFailure 11 
 See http://hackage.haskell.org/trac/hackage/ticket/777. This means that a build process has been killed, usually because it grew too large. This is common on memory-limited VPS’s and with GHC 7.4.1. Look for some memory-hogging processes you can kill, increase your RAM, or limit GHC’s heap size by doing- cabal install ... --ghc-options='+RTS -M400m'(400 megabytes works well on my 1G VPS, adjust up or down..)
- Can’t load .so/.DLL for: ncursesw (/usr/lib/libncursesw.so: file too short) 
 (or similar): cf GHC bug #5551. Upgrade GHC to 7.2.1, or try your luck with this workaround.
- Undefined iconv symbols on OS X 
 This kind of error:- Linking dist/build/hledger/hledger ... Undefined symbols: "_iconv_close", referenced from: _hs_iconv_close in libHSbase-4.2.0.2.a(iconv.o) "_iconv", referenced from: _hs_iconv in libHSbase-4.2.0.2.a(iconv.o) "_iconv_open", referenced from: _hs_iconv_open in libHSbase-4.2.0.2.a(iconv.o)- probably means you are on a mac with macports libraries installed, cf http://hackage.haskell.org/trac/ghc/ticket/4068. To work around temporarily, add this –extra-lib-dirs flag: - $ cabal install hledger --extra-lib-dirs=/usr/lib- or permanently, add this to ~/.cabal/config: - extra-lib-dirs: /usr/lib
- hledger-vty requires curses-related libraries 
 On Ubuntu, eg, you’ll need the- libncurses5-devpackage. On Windows, these are not available (unless perhaps via Cygwin.)
- hledger-chart requires GTK-related libraries 
 On Ubuntu, eg, install the- libghc6-gtk-devpackage. See also Gtk2Hs installation notes.