0

I am writing some code that is intended to operate with a pre-bundled version of Python included with a program. The issue is that it doesn't as yet include the Sqlite3 library which is a requirement of my code. Currently I have a wrapped that calls a system installed version of python2.7 to use the import.

Is there any way I can manually include or package this library to go with the code to make it more portable? My concern is that I require this to operate on Windows systems but it is less likely that they will have python2.7 available. (2.7 is the minimum as this included an update to the library)

asked Dec 5, 2011 at 12:59

2 Answers 2

1

Yes in python you have setup tools. You can use requirements.txt file and use pip install -r requirements.txt to install dependency.

pip link

answered Dec 5, 2011 at 13:14
Sign up to request clarification or add additional context in comments.

Comments

0

pysqlite is also maintained as an external project, looks like they've got downloads all the way back to Python 2.3

answered Dec 5, 2011 at 13:15

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.