我在使用Python 2.7的64位计算机上安装了PyBluez-0.22.win32.exe
(他们没有64位版本)。然后我收到以下错误:
ImportError:DLL加载失败:%1无效Win32应用程序。
以下是依赖蓝牙的代码部分:
from bluetooth import *
import bluetooth._msbt as bt
bt.initwinsock ()
答案 0 :(得分:2)
当您尝试使用64位Python解释器和32位扩展模块时,会出现该错误消息。如果您使用的是32位Python解释器和64位扩展模块,则会出现相同的错误消息。
如果PyBluez
仅作为32位库提供,那么您需要安装32位版本的Python。