3
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?

More than 1 year has passed since last update.

はじめての記事投稿

AutoGPT の詳細なインストール手順を説明します。

Posted at

この指南は、AutoGPTというプログラムをあなたのコンピュータにインストールし、実行する方法についてです。以下は、それらの手順を日本語に翻訳したものです。

1.AutoGPTをインストールする前に、以下の事前条件を確認してください。

・Python環境がインストールされており、そのバージョンが3.10以上であることを確認しました。
(https://www.python.org/)
・gitツールがインストールされている場合を確認します。(https://gitforwindows.org/)
・利用可能なOpenAIアカウントを持っていることを確認します。

2.プロジェクトコードをダウンロードします。
・ディレクトリでターミナルを開き、次のコマンドを実行してプロジェクトをクローンします。

git clone https://github.com/Significant-Gravitas/Auto-GPT.git

・ダウンロードがしたら、次のコマンドでプロジェクトディレクトリに移動します。
cd Auto-GPT
・次のコマンドを実行して必要な依存関係をインストールします。

pip install -r requirements.txt

3.OpenAIのキ​​ーを取得します。
・自分のキーを作成した後、AutoGPTディレクトリ内の設定ファイル.env.templateを見つけ、その中にあるOpenAIキーを自分のものに置き換えます。

(https://platform.openai.com/account/api-keys)

4.AutoGPTを実行します。
・上の手順が完了しましたら、ターミナルで以下のコマンドを入力すると、AutoGPTを使用できます。

python -m autogpt

・途中でAutoGPTの特定的なエラーを確認したい場合は、オプションにdebug追加ください

python -m autogpt --debug
3
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
3
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?