2017-12-16 57 views
0

PyQt5를 사용하여 표시하는 작은 플라스크 응용 프로그램을 만들었고이를 실행 파일에 고정하려고합니다. 사물의 PyQt는 측 들어 나는이 수입으로, 인터넷의 떨어져 예를 복사하여 내 자신의 작은 변화를 추가 : 나는 나 cx_Freeze에서 동결 할 때cx_freeze를 사용하여 PyQt5를 동결 할 때 파일 크기를 제한하는 방법

from PyQt5.QtCore import QUrl 
from PyQt5.QtWidgets import QApplication, QWidget 
from PyQt5.QtWebEngineWidgets import QWebEngineView, QWebEnginePage 

내가이 크기 3백메가바이트에 대해 괴물 폴더를 얻을 너무 좋아서. cx_freeze가 전체 PyQt5 모듈을 포함하고있는 것처럼 보입니다. cx_freeze 이후에 응용 프로그램의 크기를 줄일 수있는 방법이 있습니까?

감사합니다.

답변

0

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 명령을 실행 한 후에 출력 디렉터리가 다시 작성되기 때문에 이러한 파일을 제거하고 어떤 일이 발생하는지 확인할 수 있습니다.