Ousía Framework

Download

You can download both the source code of our reference implementation and the content of this website (as an example of how you can use Ousía).

Please note that this a pre-alpha development preview. We do not provide any support yet and any aspect of the language is subject to change.

Download

You'll need git to access our source code repository. The reference implementation can be downloaded using the following command line:

git clone http://git.ousia-framework.org/ousia.git

The website can be downloaded using the following command line:

git clone http://git.ousia-framework.org/ousia-www.git

Compiling the reference implementation

To compile the source code, you'll need a C++11 compliant compiler such as gcc in version 4.8 or later or clang in version 3.5 or later.

Furthermore, you'll need to install the boost and expat development libraries.

Under Fedora 20 and later you can install these packages using the following command line:

sudo yum install boost-devel expat-devel

Under Ubuntu 14.04 and later you can install these packages using the following command line:

sudo apt-get install libboost-all-dev libexpat-dev

Finally, to compile Ousía, go into the downloaded source code directory and execute

mkdir build && cd build && cmake .. && make