Login
Remember
Register
Ask a Question
How can we make a Python script executable on Unix?
0
votes
asked
May 16, 2020
in
Python
by
Robindeniel
How can we make a Python script executable on Unix?
#python-script
#script-python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 16, 2020
by
SakshiSharma
In order to make a Python script executable on Unix, we need to perform two things. They are:
Script file mode must be executable and
The first line should always begin with #.
...