How to: How do I find out my python path using python?
How to: How do I find out my python path using python?
How do I find out my python path using python?
How do I find out which directories are listed in my system’s PYTHONPATH variable, from within a Python script (or the interactive shell)?
Answer: How do I find out my python path using python?
sys.path might include items that aren’t specifically in your PYTHONPATH environment variable. To query the variable directly, use:
import os try:…
View On WordPress











