Results 1 to 2 of 2
Hey guys, me again, I am wondering how I could make a python script into a stand alone app on linux? I'm making the python scripts on my mac and ...
- 09-25-2006 #1Just Joined!
- Join Date
- Aug 2006
- Location
- Cherokee
- Posts
- 21
Python stand alone app
Hey guys, me again, I am wondering how I could make a python script into a stand alone app on linux? I'm making the python scripts on my mac and transporting them to my Linux server for my school. This one has got me bamboozled...
- 09-27-2006 #2
If its just a normal script, then put something like
at the top of your script, make it executable and then place it somewhere like /usr/local/bin. I usually remove the python extension from my scripts so that I can just use the program name in order to run it.Code:#!/usr/bin/env python


Reply With Quote
