PyQt4에서 PyQt5로 마이그레이션 할 때도 동일한 문제가있었습니다. cx_Freeze는 PyQt뿐만 아니라 전체 Qt 라이브러리를 임베드하려고하지만 보통은 필요하지 않습니다. 간단한 프로그램을 사용하면 PyQt5 중 하나의 Qt 디렉토리 (160MB 이상) 만 제거하면 충분합니다. 가끔은 필요한 DLL이 있습니다 : 내 프로그램에서 QtMultimedia의 오디오 속성을 사용하고, PyQt5/Qt/plugins/audio 내의 라이브러리가 오디오 재생을 허용해야한다는 것을 알았습니다. 좋은 접근 방법은 freezed 실행 파일을 실행 한 다음 프로세스가 필요로하는 종속성을 확인하는 다른 스크립트를 실행할 수 있습니다.
나는이 비슷한 스크립트를 사용 :
import os, psutil
#set the base path of the freezed executable; (might change,
#check the last part for different architectures and python versions
basePath = 'c:\\somepath\\build\\exe.win32-3.5\\'
#look for current processes and break when my program is found;
#be sure that the name is unique
for procId in psutil.pids():
proc = psutil.Process(procId)
if proc.name().lower() == 'mytestprogram.exe':
break
#search for its dependencies and build a list of those *inside*
#its path, ignoring system deps in C:\Windows, etc.
deps = [p.path.lower() for p in proc.memory_maps() if p.path.lower().startswith(basePath)]
#create a list of all files inside the build path
allFiles = []
for root, dirs, files in os.walk(basePath):
for fileName in files:
filePath = os.path.join(root, fileName).lower()
allFiles.append(filePath)
#create a list of existing files not required, ignoring .pyc and .pyd files
unusedSet = set(allFiles)^set(deps)
unusedFiles = []
for filePath in sorted(unusedSet):
if filePath.endswith('pyc') or filePath.endswith('pyd'):
continue
unusedFiles.append((filePath[len(basePath):], os.stat(filePath).st_size))
#print the list, sorted by size
for filePath, size in sorted(unusedFiles, key=lambda d: d[1]):
print(filePath, size)
그것이라고주의 하지 인쇄 목록에 나열된 모든 것을 제거 할 수 있지만, 그것은 당신에게 가장 큰 파일에 대한 좋은 힌트를하지 줄 수있는 안전 필수. 일반적으로 모든 것을 그대로두고 설치 프로그램을 만들 때 불필요한 파일을 무시하지만 build
명령을 실행 한 후에 출력 디렉터리가 다시 작성되기 때문에 이러한 파일을 제거하고 어떤 일이 발생하는지 확인할 수 있습니다.