我正在尝试使用 Python3 执行这个脚本
使用此命令:
python3 /media/trunk/SOUNDS/itunes/itunes2rhythm-master/itunes2rhythm.py
我收到错误:
Traceback (most recent call last):
File "/media/trunk/SOUNDS/itunes/itunes2rhythm-master/itunes2rhythm.py", line 285, in <module>
exec(open(sys.argv[0][:-2]+"conf").read(), cfg)
File "<string>", line 20
iLib=""/media/trunk/SOUNDS/itunes/Library.xml""
^
SyntaxError: invalid syntax
有人能解释一下需要做什么才能正确执行这个脚本吗?
答案1
只需编辑itunes2rhythm.conf
文件以删除多余的引号:
iLib=""/media/trunk/SOUNDS/itunes/Library.xml""
它应该是:
iLib="/media/trunk/SOUNDS/itunes/Library.xml"
为了exec
用 Python 来实现这一行。