Reputation: 812
I have been writing desktop application in c# and of the experience of writing my code in VS, compiling it and let .NET framework do the running and execution.
Now there is a problem, some of my users now use other OS order than windows, I decided to start learning python to build cross platform application (let's not debate why this is my choice). Now these are my questions.
Constructive criticism but with answers. I'm new to python although I can use it to code console application for now. I'm using eclipse + pydev
Upvotes: 0
Views: 1343
Reputation: 19242
The "simplest" option is to have python on the machine you wish to run the python script on. The same script will work on Windows, linux ... whatever, as long as it's run through a suitable version of python. You can manage the environment using virtualenv
There are other options, e.g. py2exe will turn python scripts into a Windows exe, though that won't help your non-windows users.
Upvotes: 2