Files
Beancount-importer/test_Path.py.py

7 lines
133 B
Python
Raw Normal View History

import sys
import os
print("Python executable:", sys.executable)
print("sys.path (zoekpaden):")
for p in sys.path:
print(" ", p)