From ffcfae2f57420c6ddf0b190bd69a3fa895d85dd4 Mon Sep 17 00:00:00 2001 From: hahnec Date: Tue, 19 Mar 2024 02:38:34 +0100 Subject: [PATCH] feat(echo): add command to show localation of tcl libs --- plenopticam/scripts/bundling/pyinst2app_gh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plenopticam/scripts/bundling/pyinst2app_gh.sh b/plenopticam/scripts/bundling/pyinst2app_gh.sh index 53f7789..5e02eb5 100755 --- a/plenopticam/scripts/bundling/pyinst2app_gh.sh +++ b/plenopticam/scripts/bundling/pyinst2app_gh.sh @@ -6,7 +6,7 @@ sudo rm -rf build dist # find python's site-packages path sp_path=$(python3 -c "import sysconfig; print(sysconfig.get_path('purelib'))") echo "$sp_path"/imageio/ -echo $(locate libtk*.dylib) +echo $(find /usr /opt /lib /lib64 /usr/local -type f -name "libtk*.dylib" 2>/dev/null) # run pyinstaller with provided options pyinstaller plenopticam/gui/top_level.py \