Project

General

Profile

Support #613

Updated by John Abbott over 3 years ago

I it can be useful to collect which packages have to be installed to make it easy to compile CoCoALib, the interpreter and also the gui on debian linux based systems.

Here is what I think (still have to test it on a clean system) suffices, it bases on my experience on Ubuntu 14.04:
* for just CoCoALib
<pre>
sudo apt-get install g++ libgmp-dev
</pre>
* for the interpreter (text interface) additionally:
<pre>
sudo apt-get install libboost-all-dev ### overkill, but works well
# The following piecemeal installation *might* work (or it might not)
sudo apt-get install libboost-dev libboost-thread-dev libboost-filesystem-dev libboost-system-dev
</pre>
* for the *(out of date: see #1393)* date)* gui additionally to the previous both:
<pre>
sudo apt-get install qt4-qmake libqt4-dev libqt4-dev-bin
</pre>

Back