Running python script from terminal without .py extension
Unix/Linux file systems do not rely on extensions the way windows does. You should not need the .py
at the end of a file to run it.
You can run the file by either calling it with the interpreter:
python ScriptFile
Or by marking it executable and defining the interpreter on the first line (e.g. #!/usr/bin/python
).
If you are unable to execute the file with:
/Path/to/ScriptFile
check the permissions with
ls -l ScriptFile
You may need to add the executable flag and chmod
it so it will execute for you.
If you are using custom scripts regularly you may want to make sure the directory you store them is added to the PATH
environment variable.
The .py
extension is unnecessary for running the script. You only have to make the script executable (e.g. by running chmod a+x script
) and add the shebang line (#!/usr/bin/env python
).
As an option you could create wrapper for your script (a .py
file):
For example, you have a script runme.py
so you can create new file runme
to wrap the script:
#!/usr/bin/env python
import runme
and then call the runme.py
functionality just by invoking runme
in the shell.
That is useful for multiplatform scripts, cause on Windows platform you can assign .py
files to be invoked just by name without extension and shebang in the header, but on the linux platform you can't and thus the wrapper comes out.