FIX: PyInstallerでビルドされているときのルートディレクトリ取得方法を修正 #1439
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
内容
現在PyInstallerでビルドされているときにルートディレクトリを
sys.argv[0]
で取得しています。しかしこの取得方法ではシンボリックリンクから起動した場合シンボリックリンクのファイルパスになってしまいます。
ref: https://pyinstaller.org/en/v5.13.1/runtime-information.html#using-sys-executable-and-sys-argv-0
この問題は #857 で修正しましたが後にrevertされています。 #1023
このPRでファイルパスの部分だけ再度修正します。
関連 Issue
その他
他に
Path(__file__).parents[2]
を使用して取得する方法がありますがこの方法だとPyinstaller v6に更新するとデフォルトでは_internal
ディレクトリを参照するようになります。#857 で
_internal
に入れると判断したファイルと実行ファイルのディレクトリに入れるファイルの両方がevert後にresources
入っていることからsys.executable
の方にしました。