'cx_Freeze ImportError: No module named 'kivy-deps.gstreamer'
I am trying to create an exe file from my python code via cx_Freeze. When I run my setup.py file (which you may check below), I get an error message telling:
ImportError: No module named 'kivy-deps.gstreamer'
Can you tell me what I am doing wrong ?
(kivy-deps.gstreamer is installed, I also re-installed it to be sure)
Thanks in advance...
import sys
from cx_Freeze import setup, Executable
build_exe_options = {"packages": ["kivy","pygame","kivy-deps.gstreamer"], "includes": ["PIL","wheel","setuptools",], "excludes": []}
base = None
#if sys.platform == "win32":
# base = "Win32GUI"
setup(
name="guifoo",
version="0.1",
description="My GUI application!",
options={"build_exe": build_exe_options},
executables=[Executable("test.py", base=base)],
)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
