Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just installed a linux system (Kubuntu) and was wondering if there is a program to make python programs executable for linux.

share|improve this question
Already answered here http://stackoverflow.com/questions/193077/... – Andrew Beyer Nov 20 '08 at 10:32
Dupe of stackoverflow.com/questions/193077/… – S.Lott Nov 20 '08 at 11:27
No, it's not answered there. That question queries about distribution issues. – tzot Nov 20 '08 at 11:34
No, it isn't a dupe. That question is related to distributing python software avoiding library availability and compatibility issues. – tzot Nov 20 '08 at 11:50

3 Answers

up vote 30 down vote accepted

Just put this in the first line of your script :

#!/usr/bin/env python

Make the file executable with

chmod +x myfile.py

Execute with

./myfile.py
share|improve this answer
I'm confused. How does the "#!/usr/bin/env python" work when the hash is supposed to make it a commented line? I tried running the script without the hash line, but it didn't work. So obviously the line is required, but how does it work if it's a comment? – Nav Aug 17 '11 at 14:39
4  
Okay, got it. It's a shebang line: en.wikipedia.org/wiki/Shebang_(Unix) – Nav Aug 17 '11 at 15:02

Putting these lines at the starting of the code will tell your operating systems to look up for the binary programm needed for the execution of the python script i.e it is the python interpreter.

So it depends on your opearting system where it keeps the python interpreter.As I have ubuntu as operating system it keeps the python interpreter in this path /usr/bin/python so i have to write this line at the starting of my python script(Note->dont use double quotes)

"#!/usr/bin/python"

After completing and saving your code

1.Start your command terminal

2.Make sure the script lies in your present working directory

3.type chmod +x script name.py

4.NOW you can start the script by clicking the script an alert box will appear press run or run in terminal in the alert box or type in the terminal ./script name.py

share|improve this answer

If you want to obtain a stand-alone binary application in Python try to use a tool like py2exe or PyInstaller.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.