私はPythonでコーディングnewbie.Iは投稿を検索しようとしましたが、同じ問題が他に面しているようです。py2exeはopencvをインポートするとDLLが見つからないためにEXEを作成できません
私はpy2exeを使用してEXEファイルに自分の.pyファイルを変換しようとした
のWindows 10上のPython 2.7とopencv3.0を使用しています。 しかし、コマンドウィンドウが私に語った。
error: [Errno 2] No such file or directory: 'api-ms-win-core-registry-l1-1-0.dll'
これは私が 'API-MS-WIN-コアレジストリ-l1-1-0.dll' を除外した後、別のエラーがポップアップし、
言った私のsetup.pyfrom distutils.core import setup
import py2exe
import matplotlib
import FileDialog
setup(windows=['HW6.py'],
options={
'py2exe': {
"includes" : ["matplotlib.backends.backend_tkagg","cv2"],
'excludes': ['_gtkagg', '_tkagg', '_agg2', '_cairo','_cocoaagg',
"matplotlib.numerix.fft","sip", "PyQt4._qt",
"matplotlib.backends.backend_qt4agg",
"matplotlib.numerix.linear_algebra",
"matplotlib.numerix.random_array",
'_fltkagg', '_gtk','_gtkcairo' ],
'dll_excludes': ['libgdk-win32-2.0-0.dll',
'libgobject-2.0-0.dll' ,
'MSVCP90.dll']
}
},
data_files=matplotlib.get_py2exe_datafiles(),)
です
error: [Errno 2] No such file or directory: 'api-ms-win-core-errorhandling-l1-1-1.dll'
多くのDLLを除外した後も、まだDLLがありません。ここ は、私が 'HW6.py'
import matplotlib.pyplot as plt
from Tkinter import *
from PIL import ImageTk,Image
import numpy as np
import copy
import FileDialog
import warnings
import cv2
import cv2
すべてが正常に動作しないとしてインポートされた事をここで
'api-ms-win-core-string-l1-1-0.dll',
'api-ms-win-core-registry-l1-1-0.dll',
'api-ms-win-core-errorhandling-l1-1-1.dll',
'api-ms-win-core-string-l2-1-0.dll',
'api-ms-win-core-profile-l1-1-0.dll',
'api-ms-win-core-processthreads-l1-1-2.dll',
'api-ms-win-core-libraryloader-l1-2-1.dll',
'api-ms-win-core-file-l1-2-1.dll',
'api-ms-win-security-base-l1-2-0.dll',
'api-ms-win-eventing-provider-l1-1-0.dll',
'api-ms-win-core-heap-l2-1-0.dll',
'api-ms-win-core-libraryloader-l1-2-0.dll',
'api-ms-win-core-localization-l1-2-1.dll',
'api-ms-win-core-sysinfo-l1-2-1.dll',
'api-ms-win-core-synch-l1-2-0.dll',
'api-ms-win-core-heap-l1-2-0.dll'
を除外されたものです。 私はこれらのDLLをどのように処理するのか分かりません。 ありがとう!
スペルミス? ''多くのDLLを除外した後、まだいくつかのDLLが見つかりません "' **除外** ** – Torxed
私はスペルの問題とは思わない。 DLLを含めるのではなく、DLLを「除外」したいのですが、これは前にこの種の問題で遭遇したときに役に立ちます。しかし、今回はあまりにも多くのDLLが間違っていて、私はそれを修正する方法がわかりません。 – tsao