粘性模块无法正确安装

时间:2016-09-13 16:32:27

标签: python windows pip

C:\Python34\Scripts>pip install Gooey
Collecting Gooey
  Using cached Gooey-0.9.2.3.zip
    Complete output from command python setup.py egg_info:
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "C:\Users\Haeshan\AppData\Local\Temp\pip-build- 5waer38m\Gooey\setup.py", line 9, in <module>
    version = __import__('gooey').__version__
  File "C:\Users\Haeshan\AppData\Local\Temp\pip-build-5waer38m\Gooey\gooey\__init__.py", line 2, in <module>
    from gooey.python_bindings.gooey_decorator import Gooey
  File "C:\Users\Haeshan\AppData\Local\Temp\pip-build-5waer38m\Gooey\gooey\python_bindings\gooey_decorator.py", line 54
    except Exception, e:
                    ^
SyntaxError: invalid syntax

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in   
C:\Users\Haeshan\AppData\Local\Temp\pip-build-5waer38m\Gooey\

当我尝试为python安装Gooey模块时出现此错误,为什么会有任何想法?

1 个答案:

答案 0 :(得分:0)

看起来你正在使用Python 3.4,但Gooey只支持Python 2:

https://github.com/chriskiehl/Gooey/issues/65

http://python3porting.com/differences.html#except

2018年1月更新:Gooey项目现在支持Python 3 https://github.com/chriskiehl/Gooey

相关问题