How can I include a folder with cx_freeze?
I am using cx_freeze to deploy my application. I would like to include a entire directory since including individual files doesn’t put them in a folder. How can I include a folder?
I am using cx_freeze to deploy my application. I would like to include a entire directory since including individual files doesn’t put them in a folder. How can I include a folder?
When I use cx_Freeze I get a keyerror KeyError: 'TCL_Library'while building my pygame program. Why do I get this and how do I fix it?
I’m using Python 2.6 and cx_Freeze 4.1.2 on a Windows system. I’ve created the setup.py to build my executable and everything works fine.
I’m building an application in python 3.3 which uses the requests library.
When I try to get a URL with SSL connection I want to verify it with verify = true.
This works perfectly when running my python scripts.
I’ve been dealing with this for days now and hope to find some help. I developed a GUI-application with imported modules tkinter, numpy, scipy, matplotlib, which runs fine in python itself. After having converted to an exe everything works as expected, but NOT the matplotlib section. When I press my defined plot button, the exe simply closes and doesn’t show any plots.
So I thought to make a minimal example, where I simply plot a sin-function and I’m facing the same issue:
Works perfect in python, when converting it to an exe it crashes when pressing the plot button. Here is the minimal example:
Im trying to create a basic exe using cx_Freeze. It works for .py programs that don’t have numpy but I can’t get one made correctly with numpy.