Python File "scrypt\scrypt.py", line 27, in <module>AttributeError: 'NoneType' object has no attribute 'origin'
에러 Python을 이용해서 실행파일을 만들었을 때, scrypt.py에서 에러가 발생하는 경우가 있다. 에러 로그는 아래와 같다. 참고로 실행파일을 만든 라이브러리는 Pyinstaller다. .spec 파일에 포함되는 binaries, datas, hiddeimports 등 많은 것을 해도 해결이 되지 않았다. 대략 원인은 Python이 아닌 다른 언어를 import할 때, 이런 의존성 문제가 생기는 것 같다. Traceback (most recent call last): File "~~~~~~~~~~~~~~~~~.py", line 18, in File "", line 1027, in _find_and_load File "", line 1006, in _find_and_load_unlocked File..
2024.04.01