-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use cx_Freeze if the file packaged is not a .pyc file, but a. pyd file? #1911
Comments
I do not understand what you want. Maybe the answer is in the documentation. .py: usually the input source code you wrote. |
Can we output pyd files |
Yes, using Cython. If you have a module .py (or .pyx) you can make .pyd with Cython, then use cx_Freeze to make the executable, the .pyd is automatically chosen. |
Using cx_ Freeze Can't you directly create output for pyd files? |
No. But, the creation of .py to .pyd and the build can be made in the setup.py used to build the executable. |
Ok. |
Are there any parameters that can be used directly
The text was updated successfully, but these errors were encountered: