0
我想从我的代码中创建一个exe文件。但py2exe给出这样的错误:Python 3 py2exe无模块tkinter._fix
import tkinter._fix as fix ImportError: No module named 'tkinter._fix'
我的setup.py文件是这样
from distutils.core import setup
setup(console=['userInterface.py'], options={
'py2exe': {
'includes': ['tkinter']
}
})
我使用python 3.5 32位