刚开始学习python。我的问题是怎么在linux里运行一个py文件

就是只敲命令怎么可以执行desktop上的一个py文件。
2024-11-25 23:36:14
推荐回答(4个)
回答1:

他们都是网上找的没有自己弄的,我今天也刚开始学,一起讨论
方法如下:
一个能跑通的python文件,在命令行
chmod a+x a.py
python a.py
ok了,前提是你在linux中安装好了python,我是ubuntu 10.4,完全无问题

回答2:

#!/usr/bin/env python
#注意上面这一行必须是第一行顶头写。
# python file example.
# assume we name this file as "hello.py"
# use shell command "chmod +x hello.py" to make this file executable.
# then you are able to run it by typing "./hello.py"
print "Hello this is from python!"

回答3:

cd进入桌面 ./执行文件

回答4:

wrgwrgsdsse