pyinstaller(auto-py-to-exe)에서 pymssql 빌드 시
exe는 만들어지지만 실행 시 main script 에러가 뜨면서
동작이 되지 않는 경우가 있다.
그런 경우 hidden import 옵션에서 pymssql._mssql를 추가하거나
코드 상에
import pymssql._mssql
을 넣어서 빌드하면 문제 없이 exe가 실행된다.
참고)
https://stackoverflow.com/questions/69076831/how-to-get-rid-of-the-error-ms-sql-not-found
'Programming > Python' 카테고리의 다른 글
[Python] 실행 중인 윈도우 title과 트레이 아이콘 이름 검색 (0) | 2024.11.01 |
---|---|
[Python] 프로그램 중복 실행 방지 코드 (실행 중인 프로세스 목록 확인) (0) | 2024.11.01 |
[Python] Pyinstaller 사용 시 tkcalendar 에러 문제 (0) | 2021.12.31 |
[Python] 전달 받은 문자열이 IP 형식인지 체크하는 함수 (0) | 2021.12.31 |
[Python] Windows 메시지 팝업 띄우기 (MessageBox with Windows API) (0) | 2021.12.31 |