pip3 install pycryptodome 터미널에서 package를 설치했지만 여전히 IDLE에서는 ModuleNotFoundError가 떴습니다. https://sebhastian.com/modulenotfounderror-no-module-named-crypto/ How to fix ModuleNotFoundError: No module named 'Crypto' in Python sebhastian.com 처음 시도해본 해결방법은 위와 같습니다. 1. pip uninstall crypto pycrypto pip install pycryptodome # For pip3: pip3 uninstall crypto pycrypto pip3 install pycryptodome 2. # if you d..