Krzysztof Klimonda
Krzysztof Klimonda

Reputation: 1627

cx_Freeze and moving files around

In cx_Freeze, is it possible to move all pyd files and the library.zip to some subdirectory?

I can live with two dlls along with the exe but I'd rather hide 15 other files from my users, even if only in a subdirectory.

Upvotes: 4

Views: 1318

Answers (1)

Cees Timmerman
Cees Timmerman

Reputation: 19644

That appears to be impossible. Use PyInstaller, py2exe, or py2app if possible. See also py2exe - generate single executable file.

Upvotes: 3

Related Questions