1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Raspberry Pi 5でPyTorchを動かす

Last updated at Posted at 2024-11-30

はじめに

Raspberry Pi 5で機械学習モデルを動かす際、特にPyTorchの導入の記事がなく苦労したのでPytorchを入れることができた方法を共有します。

なぜMinicondaが必要なのか

Raspberry Pi 5は従来のRaspberry Pi 4と比べて、pipを使用したライブラリのインストールは、piwheelによるサポートの制限があります。
MinicondaをインストールすることでPyTorchがインストールできました。

Minicondaのインストール手順

前提条件

  • OS: 64bit版 Raspberry Pi OS

インストール手順

  1. インストールディレクトリの作成
mkdir -p ~/miniconda3
  1. Minicondaインストーラーのダウンロード
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-aarch64.sh -O ~/miniconda3/miniconda.sh
  1. インストーラーの実行
bash ~/miniconda3/miniconda.sh -u
  1. 環境の有効化
source ~/miniconda3/bin/activate

これでMiniconda環境の中で、pipをするだけでインストールができました。

重要な注意点

  • condaとpipには互換性がなく混在させると環境が破壊される可能性があるため、どちらか一方を使う必要があります。私はpipのみを使用しました。

  • NumpyとScipyをpipした後にPytorchをインストールしてください

参考情報

この記事の情報は2024年11月時点のものです。Raspberry PiやPyTorchの開発状況により、インストール方法が変更される可能性があります。最新の情報は公式ドキュメントを参照することをお勧めします。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?