[ 오류 내용 ]$ pyinstaller -w -F --specpath spec test.pyOn Linux, objdump is required. It is typically provided by the 'binutils' package installable via your Linux distribution's package manager. [ 오류 발생 이유 ]PyInstaller에는 일반적으로 binutils 패키지에서 제공하는 ldd와 objcopy가 필요합니다. sudo apt-get update && sudo apt-get install binutils를 실행해야 합니다.(PyInstaller requires ldd and objcopy which are typically provided by..