我正试图通过ParsePy将我的树莓派连接到parse.com,ParsePy使用parse.com中的rest api。我正在编写一些python代码以使其工作,但ParsePy提供的类存在错误。特别是datatypes.py类。
似乎当我运行代码时,当它状态为import 6时,它看不到它
我得到的错误是NameError:名称"six"没有定义。
我该怎么做才能上正确的课?
您需要安装six
模块。
apt-get install python-six
可能有一个可安装的软件包;您也可以使用pip
或easy_install
(例如pip install six
)进行安装。