From 5868fca66ae113ded5754df94266aa8606523350 Mon Sep 17 00:00:00 2001 From: Alireza Kenarsari Date: Sat, 15 Feb 2020 10:22:05 -0800 Subject: [PATCH] fixed path to porcupine windows dll --- resources/util/python/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/util/python/util.py b/resources/util/python/util.py index ee99e20ae..7b93323ab 100644 --- a/resources/util/python/util.py +++ b/resources/util/python/util.py @@ -79,7 +79,7 @@ def _porcupine_library_path(): elif _PV_MACHINE == 'beaglebone': return _abs_path('resources/porcupine/lib/beaglebone/libpv_porcupine.so') elif _PV_SYSTEM == 'Windows': - return _abs_path('resources/porcupine/lib/windows/libpv_porcupine.dll') + return _abs_path('resources/porcupine/lib/windows/amd64/libpv_porcupine.dll') raise NotImplementedError('unsupported platform')