1

Is there any way so I can use a more recent version of sqlite in my application in a python-3.3 cartridge?

Currently openshift python-3.3 cartridges are using sqlite 3.6.20 which is more than 5 years old.

I tried to make sqlite from source and by adding it to path make python use the newer version of sqlite, but it didn't work.

I also found this answer on openshift, had some good info, but the solution doesn't work anymore.

Community
  • 1
  • 1
Drust
  • 363
  • 1
  • 11

1 Answers1

0

Try putting the new sqlite version in your $OPENSHIFT_DATA_DIR and refer to it specifically in that location instead of trying to add it to your path.

  • thanks for your response, I've put the the new sqlite version in $OPENSHIFT_DATA_DIR, how can I refer to it? or where should I do the referring? – Drust Jun 04 '14 at 16:58