mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-26 04:05:49 +03:00
[GH-ISSUE #165] No OPENSSL_Applink #151
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ken1882 on GitHub (Apr 23, 2021).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/165
I'm on Windows 10 19041, Python 3.8.5, pyinstaller 4.2 and autopytoexe 2.8.0. After converting the following simple code to exe and run it gives me error
OPENSSL_Uplink(00007FFE3C559D30,08): no OPENSSL_Applinkand crashed.any idea to fix this? thanks.
@brentvollebregt commented on GitHub (Apr 23, 2021):
What is the command in the text field under the "Current Command" heading?
If you execute this yourself, do you get the same result?
@ken1882 commented on GitHub (Apr 26, 2021):
The command is
pyinstaller --noconfirm --onedir --console test.pyand yeah still the same error, so it's a pyinstaller issue?@brentvollebregt commented on GitHub (Apr 26, 2021):
My vote you be yes, this is a pyinstaller issue. If you run the command yourself, do you still get the issue?
I would recommend running this in an empty directory containing only your test.py file.
@ken1882 commented on GitHub (Apr 26, 2021):
Turns out it seems is the openssl issue due to my python is using different version than the Windows itself, maybe because I had compiled openssl natively myself before in order to use it in my another C project so it messed up. I used another clean Win10 VM and run the same command it works perfectly, thanks.