Skip to content

Commit

Permalink
feat(echo): add command to show localation of tcl libs
Browse files Browse the repository at this point in the history
  • Loading branch information
hahnec committed Mar 19, 2024
1 parent b3bdef9 commit ffcfae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plenopticam/scripts/bundling/pyinst2app_gh.sh
Expand Up @@ -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 \
Expand Down

0 comments on commit ffcfae2

Please sign in to comment.