現在、pygameモジュールを使用してゲームを作成しています。私は以下のリンクの指示に従いました。 https://pythonprogramming.net/converting-pygame-executable-cx_freeze/
KeyError KeyError: 'TCL_Library' when I use cx_Freeze AttributeError Attribute Error while using cx_Freeze などの問題を解決しました。
Setup.pyのビルドは完了しましたが、ゲームのexeファイルを実行すると、致命的なPythonエラー:Py_Initialize:ファイルシステムコーデックを読み込めません
Fatal Python error: Py_Initialize: unable to load the file system codec
Traceback (most recent call last):
File "C:\Users\jinju\AppData\Local\Programs\Python\Python35-32\lib\encodings\__init__.py", line 31, in <module>
ImportError: No module named 'codecs'
Linuxカーネルで回答された以前の質問を読みました( cx_Freeze: "'codecs'という名前のモジュールがありません" )が、Windows10カーネルで何をすべきか知りたいです。
私はPython 3.5.3ダウンロードpythonホームページ、cx_Freeze-5.1-cp35-cp35m-win32.whlからpip、pygame1.9.3から自動的にダウンロードwhlをpipでダウンロードします。
setup.pyファイル
import cx_Freeze, os
executables = [cx_Freeze.Executable("quatris.py")]
os.environ['TCL_LIBRARY'] = r'C:\Users\jinju\AppData\Local\Programs\Python\Python35-32\tcl\tcl8.6'
os.environ['TK_LIBRARY'] = r'C:\Users\jinju\AppData\Local\Programs\Python\Python35-32\tcl\tk8.6'
cx_Freeze.setup(
name = "QUATRIS",
version = '1.0',
options={"build_exe": {"packages":["pygame"], "include_files":['ab_main.wav', 'ct_main.wav', 'f3_main.wav',
'ff_main.wav', 'gta4_soviet.wav',
'h3_neverforget.wav', 'h_onefinaleffort.wav',
'm_sweden.wav', 'p1_stillalive.wav',
'p2_caramiaaddio.wav', 'smb_1-up.wav',
'smb_bump.wav', 'smb_coin.wav', 'smb_gameover.wav',
'smb_mariodie.wav', 'smb_overworld.wav',
'smb_pause.wav', 'tes4o_main.wav',
'tes5s_dragonborn.wav', 'tes5s_farhorizons.wav',
'tetris.wav', 'tloz_intro.wav', 'tw3wh_main.wav']}},
executables = executables)
init。pyファイルとcodecs.pyファイルを調べてみました。コーデックをインポートしようとすると、
module 'codecs' has no attribute 'register'
この事が出てきます。
# Register the search_function in the Python codec registry
codecs.register(search_function)
これは、init。pyファイルでエラーが発生する部分です。
これはcx_Freezeのバグでしたが、現在は修正されています: https://github.com/anthony-tuininga/cx_Freeze/commit/9c98492911d4c75587d3687206d11812b48bf144
シンプルなアプローチですが、エレガントではありません
if not True:
import codecs
コードのどこかに。