ubuntu 8.04 下安装 SOAPpy出现的问题及解决方法:
python setup.py install会报错,SyntaxError: from __future__ imports must occur at the beginning of the file。
解决方法:
需要修改../SOAPpy-0.12.0/SOAPpy文件夹下的三个文件:
Client.py
Types.py
Server.py
分别将其中的 from __future__ import nested_scopes移到文件的第一行。
然后在命令行中执行sudo python setup.py build
sudo python setup.py install, 即可以正确安装。
验证一下:
>>> import SOAPpy
>>> SOAPpy.__version__
'0.12.0'
阅读(743) | 评论(2) | 转发(0) |