Reputation: 8818
I am supposed to install Berkeley DB and Berkeley DB XML for the first time and have specifically struggled out of the IOError: No such file or directory db\include\db.h
problem. But after that I encountered another problem: Namerror: name 'db_ver_list' is not defined
. Is there any documentation which can make me install these database API for Python on Windows? Or you could give me instructions or steps to do that. Thanks in advance.
Upvotes: 2
Views: 279
Reputation: 11203
I believe that for Python 2.7 on Windows your only option is to build the modules from the sources following the Oracle provided instructions (according to these instructions the sources contain specific instructions for building the Python bindings in the dbxml-2.5.16\dbxml\src\python
sub-directory).
You'll need to install the free Visual C++ 2008 Express compiler, which can be installed from the offline installation Visual Studio 2008 Express iso, to be able to perform the compilation of the Berkeley DB/DBXML sources.
Upvotes: 3