Re: [Tutor] Running Python code without python installed

2016-08-27 Thread wolfrage8...@gmail.com
There are actually some options here. But all of them will require some form of a installer. The only gotcha is you need an installer for each platform you plan on distributing too. So for Windows I currently use: INNO Setup Installer ( http://www.jrsoftware.org/isinfo.php ) and package the Pytho

Re: [Tutor] Running Python code without python installed

2016-08-27 Thread Alan Gauld via Tutor
On 27/08/16 07:26, Jade Beckmann wrote: > I'm just wondering how someone who doesn't have the python software > installed on their PC or mac would be able to run the program? They can't. You need the interpreter to be able to run Python code. The good news is that Macs come with Python installed

Re: [Tutor] Running Python code without python installed

2016-08-27 Thread Ben Finney
Jade Beckmann writes: > I'm just wondering how someone who doesn't have the python software > installed on their PC or mac would be able to run the program? The program will need the Python interpreter and standard library installed, along with any third-party libraries on which your program dep

[Tutor] Running Python code without python installed

2016-08-27 Thread Jade Beckmann
Hi there, I'm creating a program using python that uses a GUI and I want to be able to give the file to others for them to use the program on their computer. I'm just wondering how someone who doesn't have the python software installed on their PC or mac would be able to run the program? Thanks,