Re: Problem import owlready2
				
					Posted by Jiba on 
					
					URL: http://owlready.306.s1.nabble.com/Problem-import-owlready2-tp74p80.html
					
					SQLite does run as a separate "instance", it is simply a library (.so file).
I think you can run Python with a different version using the LD_PRELOAD environment variable :
LD_PRELOAD=/path/to/custom/libsqlite3.so python ...
You just need a libsqlite3.so.xxx file ; I think you can easily compile a fresh one from SQLite source.