大家早上好。我正在寻找一些帮助,找出究竟是什么情况下,我收到一个错误。我最近从一个Pi B+升级到了一个运行在Debian Jessie上的Pi 2。我正在使用我的Pi作为一个基于web的信息亭和基于web的internet广播服务器。启动时,我正在运行以下脚本:
#!/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 /
这个脚本可以解决气喘问题,甚至可以帮助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”来确保python2.7已经安装并且是最新的,但是我已经安装了最新的版本。任何帮助都将不胜感激。
谢谢您!
最佳答案
假设文件pianobar
位于您执行的.py
文件旁边,您可以调用Popen('./pianobar', ....
。或者,在调用Python之前将目录添加到shell脚本中的PATH变量中。
关于python - Debian Jessie上的Python问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35460132/