> ## Documentation Index
> Fetch the complete documentation index at: https://docs.devin.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Devin Desktop をインストール

> Mac、Windows、Linux への Devin Desktop のインストール方法と、Debian、Ubuntu、Fedora、RHEL 向けの apt および yum パッケージリポジトリについて説明します。

<Tabs>
  <Tab title="Mac">
    最小OSバージョン：OS X Yosemite

    <a href="https://devin.ai/download/confirmation?code=ma" target="_blank" rel="noopener noreferrer">
      <button style={{width: '170px', backgroundColor: '#317CFF', color: 'white', padding: '5px 10px', border: 'none', borderRadius: '5px', cursor: 'pointer', fontSize: '0.8rem', display: 'flex', justifyContent: 'center'}}>Mac版をダウンロード</button>
    </a>
  </Tab>

  <Tab title="Windows">
    必要なOSの最低バージョン: Windows 10

    <a href="https://devin.ai/download/confirmation?code=wu" target="_blank" rel="noopener noreferrer">
      <button style={{width: '170px', backgroundColor: '#317CFF', color: 'white', padding: '5px 10px', border: 'none', borderRadius: '5px', cursor: 'pointer', fontSize: '0.8rem', display: 'flex', justifyContent: 'center'}}>Windows版をダウンロード</button>
    </a>
  </Tab>

  <Tab title="Linux（tar）">
    最小要件: glibc >= 2.28、glibcxx >= 3.4.25 (例: Ubuntu 20、Debian 10、Fedora 36、RHEL 8)

    <a href="https://devin.ai/download/confirmation?code=li" target="_blank" rel="noopener noreferrer">
      <button style={{width: '170px', backgroundColor: '#317CFF', color: 'white', padding: '5px 10px', border: 'none', borderRadius: '5px', cursor: 'pointer', fontSize: '0.8rem', display: 'flex', justifyContent: 'center'}}>Linux 向けにダウンロード</button>
    </a>

    tarball は自動更新されません。パッケージマネージャー経由で新しいリリースを入手するには、
    代わりに **Linux (deb) ** または **Linux (rpm) ** の手順に従ってください。
  </Tab>

  <Tab title="Linux（deb）">
    debベースのディストリビューション (Ubuntu 20.04以降、Debian 10以降) の場合：

    リポジトリを追加します：

    ```bash theme={null}
    sudo apt-get install wget gpg
    wget -qO- "https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/windsurf.gpg" | gpg --dearmor > windsurf-stable.gpg
    sudo install -D -o root -g root -m 644 windsurf-stable.gpg /etc/apt/keyrings/windsurf-stable.gpg
    echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/windsurf-stable.gpg] https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/apt stable main" | sudo tee /etc/apt/sources.list.d/windsurf.list > /dev/null
    rm -f windsurf-stable.gpg
    ```

    次に、インストールします：

    ```bash theme={null}
    sudo apt install apt-transport-https
    sudo apt update
    sudo apt install devin-desktop
    ```

    <Note>
      リポジトリ URL では引き続きリブランド前の `windsurf` という名称が使用されていますが、パッケージ名は現在
      `devin-desktop` です。`windsurf` は `devin-desktop` を取り込む移行用パッケージとして引き続き提供されるため、
      既存のインストール環境でも更新が継続されます。
    </Note>
  </Tab>

  <Tab title="Linux（rpm）">
    RPM ベースのディストリビューション (Fedora 36 以降、CentOS 8 以降、RHEL 8 以降) の場合。

    署名キーをインポートし、リポジトリを追加します。

    ```bash theme={null}
    sudo rpm --import https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/yum/RPM-GPG-KEY-windsurf
    sudo tee /etc/yum.repos.d/windsurf.repo > /dev/null <<'EOF'
    [windsurf]
    name=Windsurf Repository
    baseurl=https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/yum/repo/
    enabled=1
    autorefresh=1
    gpgcheck=1
    metadata_expire=1h
    gpgkey=https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/yum/RPM-GPG-KEY-windsurf
    EOF
    ```

    次に、インストールします：

    ```bash theme={null}
    sudo dnf check-update
    sudo dnf install -y devin-desktop
    ```

    <Note>
      リポジトリ URL では引き続きリブランド前の `windsurf` 名が使用されていますが、パッケージ名は現在
      `devin-desktop` です。既存のインストール環境が引き続き更新されるよう、`windsurf` を提供しています。

      `metadata_expire=1h` を指定すると、dnf は新しいリリースを1時間ごとに確認します。以前のバージョンの
      手順ではこれが省略されていたため、dnf はデフォルトの48時間に戻り、新しいリリースが最大2日遅れて
      表示される可能性がありました。
    </Note>
  </Tab>
</Tabs>

Devin Desktop をインストールしたら、[オンボーディング](/ja/desktop/getting-started#onboarding)に従ってテーマを選択し、VS Code または Cursor の設定をインポートしてログインします。

<Card title="はじめに" icon="rocket" href="/ja/desktop/getting-started">
  Devin Desktop をセットアップして、機能を試してみましょう。
</Card>
