vote up 2 vote down star

Hi, I just installed a linux system (Kubuntu) and was wondering if there is a program to make python programs executable for linux. Thanx in advance :)

flag
Dupe of stackoverflow.com/questions/193077/… – S.Lott Nov 20 '08 at 11:27
No, it isn't a dupe. That question is related to distributing python software avoiding library availability and compatibility issues. – ΤΖΩΤΖΙΟΥ Nov 20 '08 at 11:50

2 Answers

vote up 11 vote down check

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
link|flag
vote up 0 vote down

Already answered here http://stackoverflow.com/questions/193077/...

link|flag
No, it's not answered there. That question queries about distribution issues. – ΤΖΩΤΖΙΟΥ Nov 20 '08 at 11:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.