从ubuntu服务器执行/运行python脚本

时间:2010-04-08 16:32:13

标签: python linux bash

有人可以帮我解决如何通过命令行运行python脚本吗?

我的python脚本http://buffis.com/2007/07/25/getting-info_hash-for-xbt-tracker/comment-page-1/

我正在使用此命令/var/www/hash_info.py /var/www/Muha_Album.7912.torrent

我已经复制了上面文章链接中提到的依赖文件bencode.py。当我执行上面的命令时,我得到错误没有这样的文件或目录,但是当我将文件chmod到644时,它说Permission denied该文件出现在该位置。

我已使用此命令apt-get install python-gtk2 python-glade2

安装了pythong

3 个答案:

答案 0 :(得分:4)

python /var/www/hash_info.py /var/www/Muha_Album.7912.torrent

答案 1 :(得分:3)

也许它说:

bad interpreter: No such file or directory

然后,第一行,即所谓的shebang line就是问题所在。我想你需要把它改成你的python真正安装的地方。在我的Ubuntu安装上,它是/usr/bin/python

此外,旅行者的解决方案也适合你。

答案 2 :(得分:0)

尝试chmod 744