Update 28/12/2014:

Please download the latest comtypes 1.1.1 from https://pypi.python.org/pypi/comtypes and run setup or just use pip

 

Ulipad依赖于comtypes,但是comtypes只有32位安装包,直接在win7 64bit下安装会出错

参考这篇博文的解决方法

http://idaemon.net/post-213.html

修改安装包的setup.py文件中第42行

from distutils.core import setup, Command, DistutilsOptionError

修改为:

from distutils.core import setup, Command 
from distutils.errors import DistutilsOptionError

这样在执行下面的安装命令就不会出错

python setup.py install

 

相关文章:

  • 2021-11-21
  • 2021-06-11
  • 2021-12-17
  • 2022-12-23
  • 2022-03-06
  • 2021-08-29
  • 2022-12-23
  • 2021-05-09
猜你喜欢
  • 2021-10-28
  • 2022-12-23
  • 2021-10-18
  • 2021-05-30
  • 2021-05-02
  • 2022-01-02
  • 2022-02-08
相关资源
相似解决方案