
import sys
import os

print(f"Python executable: {sys.executable}")
try:
    import captcha
    print(f"captcha module file: {captcha.__file__}")
    print(f"captcha package path: {captcha.__path__}")
except ImportError as e:
    print(f"Error importing captcha: {e}")

try:
    import django_recaptcha
    print(f"django_recaptcha module file: {django_recaptcha.__file__}")
except ImportError:
    print("django_recaptcha not found")

