We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
忘備録的なIssueです。
Python 3.11.4に更新した場合PyInstallerを5.12.0以上へ更新する必要があります。 https://pyinstaller.org/en/stable/CHANGES.html#id4
Fix ModuleNotFoundError: No module named 'ipaddress' for any application built with Python >=3.11.4. (#7692)
また、PyInstaller 3.5.7以上に更新するとPyInstallerのカスタムビルドに失敗するようになります。
これを回避するためにはMSVCのターゲットを指定するかDeveloper Command Promptの環境外でビルドする必要があります。
Developer Command Prompt
voicevox_engine/build_util/modify_pyinstaller.bash
Line 24 in 9b04dc9
- (cd "$tempdir/bootloader" && python ./waf all) + (cd "$tempdir/bootloader" && python ./waf all --msvc_targets=x64)
The text was updated successfully, but these errors were encountered:
modify_pyinstaller.bash: waf command: --msvc_targets="x64"
04d1a8c
Thanks: VOICEVOX#724
PyInstaller 5.13.2に更新 (#765)
791f442
* Update to PyInstaller 5.13.2 * update requirements.txt * modify_pyinstaller.bash: waf command: add --target-arch="64bit" * modify_pyinstaller.bash: waf command: --msvc_targets="x64" Thanks: #724 * pyinstaller ^5.13
Successfully merging a pull request may close this issue.
忘備録的なIssueです。
Python 3.11.4に更新した場合PyInstallerを5.12.0以上へ更新する必要があります。
https://pyinstaller.org/en/stable/CHANGES.html#id4
また、PyInstaller 3.5.7以上に更新するとPyInstallerのカスタムビルドに失敗するようになります。
これを回避するためにはMSVCのターゲットを指定するか
Developer Command Prompt
の環境外でビルドする必要があります。voicevox_engine/build_util/modify_pyinstaller.bash
Line 24 in 9b04dc9
The text was updated successfully, but these errors were encountered: