Installing Mulder#
From PyPI#
Binary distributions of Mulder are available from PyPI, for Linux, OSX and Windows as
pip3 install mulder
From source#
Mulder source is available from GitHub, e.g. as
git clone --recursive https://github.com/niess/mulder
To build Mulder from source, you will require the Rust toolchain with a C99 compliant compiler. Mulder is built as a Rust shared library, using PyO3. For example, on Linux, the following commands builds the Mulder package in-source (under src/python/mulder).
# Build the Mulder binary.
cargo build --release
# Link the resulting binary.
ln -rs target/release/lib_core.so src/python/mulder/_core.so