我在我的机器上安装了web2py。我只需点击web2py.exe然后它要求输入密码然后它说“无法检测到你的浏览器”。
任何帮助都会很明显。
答案 0 :(得分:2)
这不是错误,只是一条警告信息。
此消息由this line引入,建议只是自动打开网络浏览器。
但是,即使没有webbrowser模块,您也应该能够运行web2py并忽略警告消息,
如果您无法运行web2py或遇到任何问题,请打开issue ticket,web2py开发人员会查看它。
答案 1 :(得分:1)
消息来自这里:
def try_start_browser(url):
""" Try to start the default browser """
try:
import webbrowser
webbrowser.open(url)
except:
print 'warning: unable to detect your browser'
您可以尝试从python cli shell获取webbrowser.open以查看特定异常是什么。在我的(OS X)系统上:
~ $ python Python 2.7.1 (r271:86882M, Nov 30 2010, 10:35:34) [GCC 4.2.1 (Apple Inc. build 5664)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import webbrowser >>> webbrowser.open('http://stackoverflow.com') True