File size: 439 Bytes
e4d5155 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#!/usr/bin/env python
"""
Debug script for efficient-context.
"""
import sys
import os
print(f"Python version: {sys.version}")
print(f"Current working directory: {os.getcwd()}")
print(f"Python path: {sys.path}")
try:
import efficient_context
print(f"Successfully imported efficient_context: {efficient_context.__file__}")
except ImportError as e:
print(f"Failed to import efficient_context: {e}")
print("Script completed")
|