Replies: 1 comment 1 reply
-
Python is interpreter-based, a possible workaround is compile different C++ executables/libraries corresponding to Python versions. As there are only a few Python mainstream versions(3.6, 3.8 etc), it should work. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I build a simple CLI executable which can run small python scripts. All work great on my machine w python38 but i cant distribuite it becouse it's strictly bindend to the my current python version (3.8.x).
Downloading any of embeddable version (3.7, 3.8, 3.9, 3.10) and simply renaming the .dll e the .zip python38.dll & python38.zip also work without problem, the compatibility (at least for this case) is not a problem.
Thx
Beta Was this translation helpful? Give feedback.
All reactions