0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Qiita全国学生対抗戦Advent Calendar 2024

Day 19

2024年版 Windows11にMagentaをインストールする方法

Last updated at Posted at 2024-12-05

Magentaの開発環境を構築する方法

Magentaの開発環境を構築しようとした際、エラーが出まくって手こずりました。今後、Magentaのインストールを考えている人は、参考にしていただければ幸いです。

Anacondaのインストール

winget install Anaconda.Anaconda3

仮想環境の構築

以下の操作はAnaconda Navigatorからでも可能です。

Pythonバージョンは3.7系を選択

conda create --name magenta_env python=3.7
conda activate magenta_env

TensorFlowのインストール

追記 (2024/12/16)

Magentaをインストールする際にTensorFlowも一緒にインストールされます。

Magentaのインストール

git clone https://github.com/tensorflow/magenta.git
cd magenta
pip install -e .

ffmpegのインストール

MP3、AACを扱う場合は必要

winget install ffmpeg

おわりに

以上でMagentaのインストールが完了です!!
お疲れさまでした:blush:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?