如何将python文件转换为linux可执行文件

时间:2018-03-17 16:14:47

标签: python linux

我使用python 2.7,我想知道如何将我的python代码更改为linux可执行文件,非常类似于使用gcc -o hello hello.c但是使用python

1 个答案:

答案 0 :(得分:0)

你通常不会。

而是在文件中添加所谓的shebang,并更改标志以使其可执行。

所以第一行应该是

#!/usr/bin/python2.7
# The rest of your code...

然后chmod u+x your_file.py

然后您可以像在./your_file.py中一样运行它,就像在all: main main: main.o tree.o list.o gcc -o main main.o tree.o list.o main.o: main.c gcc -Wall -Wextra -g -std=c11 -O2 -c main.c tree.o: tree.h tree.c gcc -Wall -Wextra -g -std=c11 -O2 -c tree.c list.o: list.c list.h gcc -Wall -Wextra -g -std=c11 -O2 -c list.c clean: rm *.o main valgrid: valgrind ./main 中一样。