How to add data files in nuitka
-
I write this commands in terminal:
python -m nuitka --onefile --windows-console-mode=disable \ --follow-imports --enable-plugin=PySide6 \ --include-module=sys --include-module=cv2 \ --include-module=datetime --include-module=send2trash \ --include-module=time --include-module=os \ --include-module=numpy --include-module=main \ --include-data-files="F:/QML/gallery/gallery.qml=gallery.qml" \ --include-data-files="F:/QML/gallery/pictures=./pictures/" \ --output-filename=came.exe \ main.py
and encounter this error:
File "C:\Users\ym\AppData\Local\Programs\Python\Python312\Lib\site-packages\nuitka\MainControl.py", line 999, in _main
main_module = _createMainModule()
^^^^^^^^^^^^^^^^^^^
File "C:\Users\ym\AppData\Local\Programs\Python\Python312\Lib\site-packages\nuitka\MainControl.py", line 244, in _createMainModule
Recursion.checkPluginSinglePath(
File "C:\Users\ym\AppData\Local\Programs\Python\Python312\Lib\site-packages\nuitka\importing\Recursion.py", line 371, in checkPluginSinglePath
plugin_filename = os.path.abspath(plugin_filename)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\ym\AppData\Local\Programs\Python\Python312\Lib\ntpath.py", line 591, in abspath
return _getfullpathname(normpath(path))
^^^^^^^^^^^^^^
TypeError: _path_normpath: path should be string, bytes or os.PathLike, not NoneTypeHow do I solve this error?
-
Which PySide6 version is this - 6.8.1?
-
@friedemannkleint yes 6.8.1
-
@Shyamnath How do I add project data files (images and QML files) to the pysidedeploy.spec file so that the generated executable file can be run anywhere?Because my data files are not being added.