I just installed a linux system (Kubuntu) and was wondering if there is a program to make python programs executable for linux.
|
|
Just put this in the first line of your script :
Make the file executable with
Execute with
|
|||||||
|
|
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 |
|||
|
|
|
If you want to obtain a stand-alone binary application in Python try to use a tool like py2exe or PyInstaller. |
|||
|
|