How to use Berkeley DB in an application without installing

297 Views Asked by At

I'm using Berkeley DB in a python project, and I am wondering if I can make the libraries available to python without specifically installing berkeley DB.

How can you embed Berkeley DB in an application generally?

Has anyone done this with python and bsddb3?

1

There are 1 best solutions below

0
Mike Andrews On

You can't... at least not without installing something. You'd have to statically link BDB into the python interpreter. But, then you'd have a custom python binary you'd need to install.