1.建立python脚本,如test.py
print("hello world")
2.使用python test.py执行该python脚本
结果:hello world
3.查看python解释器的位置
$python $import sys $sys.executable
结果示例:
/usr/bin/python3 #解释器位置
4.在test.py脚本头部加入解释器位置
#!/usr/bin/python3 print("hello world")
5.使用下面命令添加可执行权限
$chmod +x test.py
6.之后,可以使用下面命令直接执行test.py脚本
$./test.py