大家早上好。我正在寻找一些帮助,弄清楚我收到的错误究竟发生了什么。我最近从Pi B +升级到在Debian Jessie上运行的Pi 2。我使用我的Pi作为基于网络的信息亭和基于网络的互联网广播服务器。在启动时,我正在运行以下脚本:
#!/bin/sh
# launcher.sh
# navigate to home directory, then to this directory, then execute python script, then back home
cd /
cd /home/pi/Desktop/Pianobar-Web
python pianobar_web.py
cd /
这个脚本适用于Wheezy,甚至在Jessie上工作以启动我的应用程序。但是,当尝试启动部分应用程序时,我现在收到与Python相关的错误。我对Debian不是很有经验,似乎错过了运行我的应用程序所需的文件或依赖项。有关信息,请参阅以下错误消息:
> Error: 500 Internal Server Error
>
> Sorry, the requested URL 'http://192.168.0.125:8080/auth' caused an
> error: Internal Server Error
>
> Exception: OSError(2, 'No such file or directory')
>
> Traceback: Traceback (most recent call last): File
> "/home/pi/Pianobar-Web/bottle.py", line 845, in _handle
> return route.call(**args) File "/home/pi/Pianobar-Web/bottle.py", line 1709, in wrapper
> rv = callback(*a, **ka) File "pianobar_web.py", line 67, in authenticate
> proc = subprocess.Popen("pianobar", stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) File
> "/usr/lib/python2.7/subprocess.py", line 710, in __init__
> errread, errwrite) File "/usr/lib/python2.7/subprocess.py", line 1335, in _execute_child
> raise child_exception OSError: [Errno 2] No such file or directory
我已经尝试使用命令“apt-get install python2.7”确保安装python 2.7并保持最新,但我已经安装了最新版本。任何帮助将不胜感激。
谢谢!
答案 0 :(得分:0)
假设文件pianobar
位于您执行的.py
文件旁边,您可以拨打Popen('./pianobar', ....
。或者,在调用Python之前,将目录添加到shell脚本中的PATH变量。
答案 1 :(得分:0)
File "pianobar_web.py", line 67, in authenticate
proc = subprocess.Popen("pianobar", stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
我终于找到了解决办法。我不得不改变通往" pianobar"在第34行" pianobar_web.py"脚本文件以反映应用程序的完整路径。