Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python,': 0.01; 'subject:module': 0.04; 'importerror:': 0.07; 'sql.': 0.07; 'python': 0.08; '32-bit': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'subject:windows': 0.09; 'error:': 0.12; 'dlls': 0.16; 'subject:problem': 0.19; '(most': 0.21; 'header:In-Reply-To:1': 0.22; '64-bit': 0.23; 'traceback': 0.25; 'load': 0.26; 'windows': 0.27; 'guess': 0.28; 'skip:" 30': 0.28; 'fix': 0.29; 'thanks': 0.30; 'installation': 0.30; 'skip:" 20': 0.33; 'header:User-Agent:1': 0.34; 'header:X-Complaints-To:1': 0.34; 'to:addr:python-list': 0.34; 'dll': 0.35; 'last):': 0.35; 'running': 0.35; 'file': 0.36; 'but': 0.37; 'getting': 0.38; 'install': 0.38; 'received:org': 0.38; 'problem.': 0.38; 'hello,': 0.38; 'subject:: ': 0.38; 'header:Mime-Version:1': 0.39; 'client': 0.39; 'to:addr:python.org': 0.39; 'your': 0.61; 'peter': 0.62; 'schrieb': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Christian Heimes Subject: Re: module problem on windows 64bit Date: Mon, 27 Jun 2011 21:25:02 +0200 References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: f048232201.adsl.alicedsl.de User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110516 Lightning/1.0b2.102ipre2 Thunderbird/3.1.10 In-Reply-To: X-Enigmail-Version: 1.1.2 OpenPGP: id=AD16AB1B; url=http://cheimes.de/heimes.asc X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 26 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1309202723 news.xs4all.nl 4364 [::ffff:82.94.164.166]:38482 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:8513 Am 27.06.2011 19:02, schrieb Peter Irbizon: > Hello, > > on 32-bit windows everything works ok but on 64-bit win I am getting > this error: > Traceback (most recent call last): > File "app.py", line 1040, in do_this_now > File "kinterbasdb\__init__.pyc", line 119, in > File "kinterbasdb\_kinterbasdb.pyc", line 12, in > File "kinterbasdb\_kinterbasdb.pyc", line 10, in __load > ImportError: DLL load failed: This application has failed to start > because the application configuration is incorrect. Reinstalling the > application may fix this problem. > > How to get it work on 64bit windows as well? many thanks Are you running 32bit or 64bit Python on your 64bit Windows box? You have to install the same flavour of Python, kinterbasdb and Firebird SQL (all 32bit or all 64bit). You also have to check the "copy client dlls to system directory" check box during the installation of Firebird SQL. I guess that you have a 32bit installation of Python but a 64bit installation of Firebird SQL. Christian