Skip to content
New issue

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

Macでのビルドについて #145

Closed
HyodaKazuaki opened this issue Oct 22, 2021 · 3 comments · Fixed by #156
Closed

Macでのビルドについて #145

HyodaKazuaki opened this issue Oct 22, 2021 · 3 comments · Fixed by #156

Comments

@HyodaKazuaki
Copy link
Contributor

HyodaKazuaki commented Oct 22, 2021

内容

MacでVOICEVOXエンジンのビルド、実行に成功しましたのでお知らせします。
ビルド方法などは以下の記事に記載してあります。
https://k-hyoda.hatenablog.com/entry/2021/10/23/000135

Pros 良くなる点

  • MacユーザーがVOICEVOXを利用することができるようになる

Cons 悪くなる点

  • GitHub Actionsでのビルドに時間がかかるようになる

実現方法

詳細は上記の記事にあります。
注意が2点ほどあります。

  • OpenBLASをHomebrewでインストールし、NumPyをビルドしなければならない
  • コアライブラリのパス(@rpath)を通すため、install_name_tool@rpathを指定しなければならない

VOICEVOXのバージョン

0.7.4

OSの種類/ディストリ/バージョン

macOS BigSur 11.6
MacBook Air 2018

その他

特になし

@Hiroshiba
Copy link
Member

Hiroshiba commented Oct 22, 2021

ご報告ありがとうございます!ビルドできてよかったです!!

OpenBLASのインストールとrpathの設定、なるほどです。
OpenBLASはwindowsやlinuxも多分デフォルトではいっていないので、もしかしたらインストールしなくても動くのかもと思いました。
(環境によるかもしれません)

VOICEVOXはWindowsとLinux用の自動ビルド環境があり、ここにMac用を組み込んで頂けるとMac版のリリースが可能になりそうです。
@HyodaKazuaki よかったら挑戦してみませんか・・・?
こちらのIssueが参考になると思います!

@HyodaKazuaki
Copy link
Contributor Author

OpenBLASのインストールとrpathの設定、なるほどです。 OpenBLASはwindowsやlinuxも多分デフォルトではいっていないので、もしかしたらインストールしなくても動くのかもと思いました。 (環境によるかもしれません)

OpenBLASの件ですが、含めずにビルドすると実行時に以下のエラーが発生してしまうことがわかっています。
原因を解明できていないため、OpenBLASを含んでいます。

% ./run 
Traceback (most recent call last):
  File "/path/to/voicevox_build/run.dist/run.py", line 28, in <module>
  File "/path/to/voicevox_build/run.dist/voicevox_engine/synthesis_engine.py", line 5, in <module voicevox_engine.synthesis_engine>
  File "/path/to/voicevox_build/run.dist/resampy/__init__.py", line 6, in <module resampy>
  File "/path/to/voicevox_build/run.dist/resampy/filters.py", line 29, in <module resampy.filters>
  File "/path/to/voicevox_build/run.dist/scipy/signal/__init__.py", line 302, in <module scipy.signal>
  File "/path/to/voicevox_build/run.dist/scipy/signal/filter_design.py", line 16, in <module scipy.signal.filter_design>
  File "/path/to/voicevox_build/run.dist/scipy/optimize/__init__.py", line 400, in <module scipy.optimize>
  File "/path/to/voicevox_build/run.dist/scipy/optimize/optimize.py", line 36, in <module scipy.optimize.optimize>
  File "/path/to/voicevox_build/run.dist/scipy/optimize/_numdiff.py", line 6, in <module scipy.optimize._numdiff>
  File "/path/to/voicevox_build/run.dist/scipy/sparse/linalg/__init__.py", line 111, in <module scipy.sparse.linalg>
  File "/path/to/voicevox_build/run.dist/scipy/sparse/linalg/isolve/__init__.py", line 4, in <module scipy.sparse.linalg.isolve>
  File "/path/to/voicevox_build/run.dist/scipy/sparse/linalg/isolve/iterative.py", line 8, in <module scipy.sparse.linalg.isolve.iterative>
ImportError: dlopen(/path/to/voicevox_build/run.dist/scipy/sparse/linalg/isolve/_iterative.so, 2): Library not loaded: @loader_path/../../../.dylibs/libopenblas.0.dylib
  Referenced from: /path/to/voicevox_build/run.dist/scipy/sparse/linalg/isolve/_iterative.so
  Reason: image not found

VOICEVOXはWindowsとLinux用の自動ビルド環境があり、ここにMac用を組み込んで頂けるとMac版のリリースが可能になりそうです。 @HyodaKazuaki よかったら挑戦してみませんか・・・? こちらのIssueが参考になると思います!

PRお誘いありがとうございます。
エンジン側は特に変更を加えることなくビルドできそうですので、取り組みたいと思います。

@Hiroshiba
Copy link
Member

OpenBLASの件ですが、含めずにビルドすると

なんと・・・しかも実行時エラーなのはなかなか厄介ですね・・・

エンジン側は特に変更を加えることなくビルドできそうですので、取り組みたいと思います。

おー!!プルリクエストぜひお待ちしております!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants