我尝试使用 Python 的webbrowser
模块在 Windows 7(firefox 版本:19.0.2)下使用 firefox 浏览器打开一个 svg 文件:
import webbrowser
chart_path = "C:\\my_file\\mysvg.svg"
browser = webbrowser.get('mozilla')
browser.open(chart_path)
但我得到这个错误:
browser = webbrowser.get('mozilla')
File "C:\Python27\lib\webbrowser.py", line 52, in get
raise Error("could not locate runnable browser")
webbrowser.Error: could not locate runnable browser
这里有什么问题?我也试过用"firefox"
名字。但我遇到了类似的错误。
当我做:
print webbrowser._browsers
我得到:
{'windows-default': [<class 'webbrowser.WindowsDefault'>, None], 'c:\\program files\\internet explorer\\iexplore.exe': [None, <webbrowser.BackgroundBrowser object at 0x02F81B90>]}