Installation¶
Requirements¶
Installation using pip¶
The easiest way to install eFEL is to use pip:
pip install efel
In case you don’t have administrator access this command might fail with a permission error. In that case you could install eFEL in your home directory:
pip install efel --user
Or you could use a python virtual environment:
virtualenv pythonenv
. ./pythonenv/bin/activate
pip install git+git://github.com/BlueBrain/eFEL
Installing the C++ standalone library¶
If your system doesn’t have it, install CMake.
Make a new build directory:
mkdir build_cmake
Configure the build, replace YOURINSTALLDIR with the directory in which you want to install the efel library (e.g. /usr/local):
cd build_cmake
cmake .. -DCMAKE_INSTALL_PREFIX=YOURINSTALLDIR
Run the compilation and installation:
make install
This will have installed a static and shared library as:
YOURINSTALLDIR/lib/libefel.a
YOURINSTALLDIR/lib/libefel.so