2
py2exe에 문제가 있습니다. 난 그저 내가 easiely 내 PC에서 실행할 수있는 .exe 파일,로 평 파일을 "변환"할,하지만 난이 오류 메시지 py2exe에 실행하면 나타납니다py2exe 1 missing modules, readline
: 여기 내 setup.py입니다from distutils.core import setup
import py2exe, sys, os
setup(console=['filename.py'])
그리고 다음과 같은 오류 메시지가 그것을 : 나는 너희들이 나를 도울 수 있기를 바랍니다
1 missing Modules
? readline imported from cmd, code, pdb
Building 'dist\filename.exe'.
error: [Errno 2] No such file or directory: 'C:\\Users\\Name\\AppData\\Local\\Programs\\Python\\Python35-32\\lib\\site-packages\\py2exe\\run_w-py3.5-win32.exe'
)
분명히 문제는 3.5가 아직 지원되지 않는다는 것입니다. py2exe의 폴더를 체크 아웃하면 3.4를 포함하여 3.5를 제외한 대부분의 다른 버전을 사용할 수 있습니다. 임 정확한 문제는 여기를 실행 중입니다. – RedactedProfile