学习python hello world脚本不执行

时间:2013-02-20 05:28:06

标签: python-2.7

我是Python的新手并且正在学习编程。 我写了一个基本的脚本

my.py

#! /bin/python
print "hello world!"

但这不会执行。 我做了

  

chmod + x my.py

  

./ my.py

我已尝试删除程序中的空白

#!/bin/python

但即使这样也会给我错误

  

bash:./ my.py:/ bin / python:bad interpreter:没有这样的文件或目录

我正在使用Ubuntu 12.04并且系统上存在Python。 我在终端上输入

检查了程序

那么这可能是什么问题?

1 个答案:

答案 0 :(得分:2)

错误表示路径/bin/python

中没有文件

尝试which python查看解释器的位置

但为什么不python my.py