SQLite Forum

Compiling sqlite system on Ubuntu
Login
> Where do I place them?

`sudo make install` will place anything that needs to be installed into the proper directories, by default in the `/usr/local` tree, or anywhere else where `./configure --prefix=....` points to.  Run `./configure --help for more info.

> ... python for some scripting and I want to make sure that the latest built libraries are the one it uses.

The sqlite make process will not build or install python modules.

If you want to build that yourself, you are probably best off with Roger Binns' [APSW][1] (Another Python SQLite Wrapper)
 
[1]:https://github.com/rogerbinns/apsw

~~~
-- 
Kind Regards,
Kees Nuyt
~~~