2017-10-30 3 views
3

私はPython 3.6.2 (32ビット)でプログラムを書いて、cx_freezeを使用して.exeファイルに変換しました。プロシージャのエントリポイントがダイナミックリンクライブラリに見つかりませんでした

私は、Windows 8でそれを実行(64ビット)、それはプロジェクト内の以下のDLLを必要とします:

api-ms-win-crt-runtime-l1-1-0.dll 
api-ms-win-crt-time-l1-1-0.dll 
api-ms-win-crt-string-l1-1-0.dll 
api-ms-win-crt-stdio-l1-1-0.dll 
api-ms-win-crt-process-l1-1-0.dll 
api-ms-win-crt-math-l1-1-0.dll 
api-ms-win-crt-locale-l1-1-0.dll 
api-ms-win-crt-heap-l1-1-0.dll 
api-ms-win-crt-environment-l1-1-0.dll 
api-ms-win-crt-convert-l1-1-0.dll 
api-ms-win-crt-conio-l1-1-0.dll 

私はapi-ms-win-crt-filesystem-l1-1-0.dllを追加し、プロジェクトを実行すると、私はエラーを取得:

The procedure entry point terminate could not be located in dynamic link library. 
C:\users\seyed_vahid\Desktop\exe.win32-3.6\MegaGram.exe 

これを修正するにはどうすればよいですか?

答えて

関連する問題