刚开始学习python。我的问题是怎么在linux里运行一个py文件
发布网友
发布时间:2022-05-06 11:07
我来回答
共4个回答
热心网友
时间:2023-10-09 07:24
他们都是网上找的没有自己弄的,我今天也刚开始学,一起讨论
方法如下:
一个能跑通的python文件,在命令行
chmod a+x a.py
python a.py
ok了,前提是你在linux中安装好了python,我是ubuntu 10.4,完全无问题
热心网友
时间:2023-10-09 07:24
#!/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!"
热心网友
时间:2023-10-09 07:25
cd进入桌面 ./执行文件
热心网友
时间:2023-10-09 07:25
wrgwrgsdsse