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 32bit版