From 0aaf949dbf8d4d23e0ee89764680f4e01245bfe2 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 30 Oct 2023 11:07:51 -0400 Subject: [PATCH] Add a util to dump pythonpath --- configs/scripts/show-pythonpath | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 configs/scripts/show-pythonpath diff --git a/configs/scripts/show-pythonpath b/configs/scripts/show-pythonpath new file mode 100644 index 0000000..13271c5 --- /dev/null +++ b/configs/scripts/show-pythonpath @@ -0,0 +1,5 @@ +#! /usr/bin/env python +import sys + +for entry in sys.path: + print(" - " + entry)