Skip to content
Snippets Groups Projects
README.md 1.41 KiB
Newer Older
David Hendriks's avatar
David Hendriks committed
# Python module for binary_c

Based on a original work by Jeff Andrews, updated and extended
for Python3 by Robert Izzard

David Hendriks's avatar
David Hendriks committed
**THIS CODE IS VERY EXPERIMENTAL AND PROBABLY WILL NOT WORK**

r.izzard@surrey.ac.uk
http://personal.ph.surrey.ac.uk/~ri0005/binary_c.html
09/06/2019


Environment variables
---------------------

Before compilation you should set the following environment variables:

David Hendriks's avatar
David Hendriks committed
required: `BINARY_C` should point to the root directory of your binary_c installation
David Hendriks's avatar
David Hendriks committed
recommended: `LD_LIBRARY_PATH` should include $BINARY_C/src and whatever directories are required to run binary_c (e.g. locations of libgsl, libmemoize, librinterpolate, etc.)
David Hendriks's avatar
David Hendriks committed
recommended: `LIBRARY_PATH` should include whatever directories are required to build binary_c (e.g. locations of libgsl, libmemoize, librinterpolate, etc.)


Build instructions
---------------------

To build the module, make sure you have built binary_c (with "make" in the binar_c root directory), its shared library (with "make libbinary_c.so" in the binary_c root directory), and set environment variables as described above, then run:

David Hendriks's avatar
David Hendriks committed
```
David Hendriks's avatar
David Hendriks committed
```
David Hendriks's avatar
David Hendriks committed
Then to test the Python module:
David Hendriks's avatar
David Hendriks committed
```
David Hendriks's avatar
David Hendriks committed
```

You will require whatever libraries with which binary_c was compiled, as well as the compiler with which Python was built (usually gcc, which is easily installed on most systems).


------------------------------------------------------------