2

嗨,我正在尝试在我的 mac https://github.com/swinton/starrify上运行一个名为 starrify 的 Python 脚本用于 spotify

运行时出现此错误

error "Traceback (most recent call last):
File \"/Users/hnewbs/Documents/star/starrify.py\", line 7, in <module>
from spotify import Link
ImportError: No module named spotify" number 1

关于如何解决这个问题的任何想法?谢谢

我按照这些说明http://labs.tinkerista.com/?p=9重新安装 pyspotify 来修复它

4

1 回答 1

0

pyspotify没有正确安装(或者你没有运行你用来安装它的同一个 python 解释器)。您可以使用pip install pyspotify. 然后你应该能够import spotify在一个脚本中让它成功。您也可以先尝试运行pyspotify 示例脚本

于 2013-03-03T00:54:05.470 回答