I have some python application that should run on customer site. I compile my py
files to pyc
(python byte code).
What is the standard way to run the app on the customer environment? The options I see are:
- As part of my installer, install some python distribution, i.e Anaconda.
- Require the customer to have python installed in their environment.
- Bring python libraries and executable along with my code and run it directly from my installation dir.
- Convert the scripts to exe using some py-to-exe tool.
Application usage: The app is used as a tool to calculate statistics for my main product. The customer won't run it explicitly. It won't have any GUI.
Customer environment will be x64 Windows machine. No other restrictions.
Any recommendations or comments? I couldn't find such discussions on the web.