IHaskell
IHaskell is an implementation of the IPython kernel protocol which allows you to use Haskell inside IPython frontends such as qtconsole
and notebook
.
The project works with the IPython shell:
As well as the IPython browser-based notebook interface:
Installation
IPython
Make sure you have IPython version 1.0 or higher. IHaskell will not work with older versions of IPython.
ipython --version # Should print 1.0.0 (or higher!)
Haskell and Cabal
You should also have GHC and modern Cabal:
ghc --numeric-version # Should be 7.6.3
cabal --version # Should be 1.18.*
If you do not have GHC or Cabal, you should be able to install both via the Haskell Platform. On Macs with Homebrew, you can do this via
# Macs with Homebrew only, if you don't have GHC or Cabal
brew install haskell-platform
cabal update && cabal install cabal-install
Use cabal install cabal-install
to update Cabal if you still have version 1.16 instead of 1.18.
Also, in order to use executables which cabal
installs, they must be in your path. Execute this in your shell or add it to your ~/.bashrc
:
export PATH=~/.cabal/bin:$PATH
ZeroMQ
Make sure that ZeroMQ 3 is installed. Eventually IHaskell will be ported to ZeroMQ 4, but for now it is on version 3. Note that there are different instructions for different platforms:
# For Ubuntu (Saucy):
sudo apt-get install libzmq3-dev
# For Macs with Homebrew:
brew install zeromq
brew switch zeromq 3.2.4
# Compiling from source:
git clone git@github.com:zeromq/zeromq3-x.git libzmq
./autogen.sh && ./configure && make
sudo make install
sudo ldconfig
Compilation Tools
Install the happy
cabal install happy
cabal install cpphs
IHaskell Installation
Install the package from Hackage:
cabal install ihaskell
Alternatively, for the most recent version, you can install package from the Github repository and compile it from there:
git clone https://github.com/gibiansky/IHaskell
cd IHaskell
cabal install
Running IHaskell
Finally, run the notebook or console interface:
IHaskell notebook # Should open a browser window!
IHaskell console
There is a test notebook in the IHaskell
directory.
Important Note: Using IHaskell console
requires a proper patch to IPython. There is
a pull request open on the IPython repository to fix this, but until it is merged, you need to install IPython from this branch.
Note: You may have some trouble due to browser caches with the notebook interface if you also use IPython's notebook interface or have used it in the past. If something doesn't work or IPython says it can't connect to the notebook server, make sure to clear the browser cache in whatever browser you're using, or try another browser.
Contributing
IHaskell is a young project, and I'd love your help getting it to a stable and useful point. There's a lot to do, and if you'd like to contribute, feel free to get in touch with me via my email at andrew period gibiansky at gmail - although browsing the code should be enough to get you started, I'm more than happy to answer any questions myself.
For package maintainers: IHaskell has an ability to display data types it knows about with a rich format based on images or HTML. In order to do so, an external package ihaskell-something
must be created and installed. Writing these packages is simply - they must just contain instance of the IHaskellDisplay
typeclass, defined in IHaskell.Display
, and for a package ihaskell-something
should have a single module IHaskell.Display.Something
. If you have a package with interesting data types that would benefit from a rich display format, please get in contact with me (andrew dot gibiansky at gmail) to write one of these packages! A sample package is available here.
Developer Notes
Before diving in, you should read the brief description of IPython kernel architectures and read the complete messaging protocol specification.
Skim the rather-lacking Haddock documentation.
Module Quickstart:
Main
: Argument parsing and basic messaging loop, using Haskell Chans to communicate with the ZeroMQ sockets.IHaskell.Types
: All message type definitions.IHaskell.Eval.Evaluate
: Wrapper around GHC API, exposing a singleevaluate
interface that runs a statement, declaration, import, or directive.IHaskell.IPython
: Shell scripting wrapper usingShelly
for thenotebook
,setup
, andconsole
commands.IHaskell.Message.Parser
: Parsing messages received from IPython.IHaskell.Message.UUID
: UUID generator and data structure.IHaskell.Message.Writer
:ToJSON
for Messages.IHaskell.ZeroMQ
: Low-level ZeroMQ communication wrapper.serveProfile
starts listening on all necessary sockets, and returns aZeroMQInterface
record. This record exposes reading and writingChan Message
messages for all the necessary sockets, so then the rest of the application can simply use that interface.
First steps:
- Fork the repository on Github and clone your fork for editing.
- Build IHaskell as follows:
cd /path/to/IHaskell
cabal configure --enable-tests
cabal build
Loading IHaskell into GHCi for testing:
Use one of the methods below to access IHaskell files in GHCi. Once inside GHCi, you can load an IHaskell file; for example, :load IHaskell/Config.hs
.
Using cabal repl
If you have the latest version of cabal (>v1.18.0), the simplest thing to do is
cd <path-to-IHaskell>
cabal repl
The will hide all packages not listed in the
IHaskell.cabal
Using GHCi directly
If you don't want to use cabal repl, you can just call ghci with the appropriate options. You can find these in the IHaskell.cabal file.
ghci -XDoAndIfThenElse -XNoImplicitPrelude -XOverloadedStrings -package ghc -optP-include -optPdist/build/autogen/cabal_macros.h
If you just call ghci, it will use the options present in the .ghci file that comes with the IHaskell repo.