修改微信包itchat中的的utils.py文件,位置在……\Python35\Lib\site-packages\itchat\下,修改如下代码
把:
def print_qr(fileDir):
if config.OS == 'Darwin':
subprocess.call(['open', fileDir])
elif config.OS == 'Linux':
subprocess.call(['xdg-open', fileDir])
else:
os.startfile(fileDir)
改为:
def print_qr(fileDir):
if config.OS == 'Darwin':
subprocess.call(['open', fileDir])
elif config.OS == 'Linux':
subprocess.call(['xdg-open', fileDir])
elif config.OS == 'Windows':
webbrowser.open(fileDir)
else:
os.startfile(fileDir)