Installing Camelia OCaml IDE on Ubuntu Gutsy Gibbon

03 11 2007

[will be filled in later; put up for immediate use]

CODE:
sudo apt-get update
sudo apt-get install g++
sudo apt-get install qt3-dev-tools


tar xvfz camelia-1.1.tar.gz
cd src
sudo ./config
sudo make
sudo make install


sudo nano console/console.h

look for the following block of code and insert the last line:

class OProcess;
#include "ocamlprocess.h"
#include "debugprocess.h"
#include "olineedit.h"
#include "color.h"
#include "debugger/debug.h"
class Debugger;
class OCamlProcess; // insert this line here

You'll get an error regarding the tips if you don't complete this step:
sudo chmod -R 755 /usr/local/lib/camelia/tips/

Finally, run Camelia:
/usr/local/bin/camelia
You can also simply type "camelia" at the command line, so long as /usr/local/bin/ is in your $PATH; it should be on a default Ubuntu install.