#installation
基本的には pip install magenta
でmagentaをInstallすれば大丈夫。
しかし
(PassInf && "Expected all immutable passes to be initialized"), function addImmutablePass, file /Users/*/*/*/*/work/lib/IR/LegacyPassManager.cpp, line 849.
とエラーが。。
どうやらpyarrowをupdateしないといけないみたい。
```pip install -U pyarrow```で解決!
# fluidsynthを最新にする
magentaはfluidsynthを使っている場合があるので、最新にする必要がある。
>```File "/*/*/*/*/python3.6/site-packages/pretty_midi/instrument.py", line 428, in fluidsynth
fl = fluidsynth.Synth(samplerate=fs)
AttributeError: module 'fluidsynth' has no attribute 'Synth'
よくある間違い
pip install fluidsynth
で解決と思いきやそうではない。
brew install fluidsynth
とやる必要があります。すでにfluidsynth
がある場合は、brew upgrade fluidsynth
で大丈夫でした。