我是Python的新手并且正在学习编程。 我写了一个基本的脚本
#! /bin/python
print "hello world!"
但这不会执行。 我做了
chmod + x my.py
和
./ my.py
我已尝试删除程序中的空白
#!/bin/python
但即使这样也会给我错误
bash:./ my.py:/ bin / python:bad interpreter:没有这样的文件或目录
我正在使用Ubuntu 12.04并且系统上存在Python。 我在终端上输入
检查了程序那么这可能是什么问题?
答案 0 :(得分:2)
错误表示路径/bin/python
尝试which python
查看解释器的位置
但为什么不python my.py
?