Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions docs/source/quickstart/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
パッケージをインストールするには、次のコマンドを実行します:

```bash
pip install adf_core_python
pip install git+https://github.com/adf-python/adf-core-python.git
```

## 新規エージェントの作成
Expand All @@ -34,21 +34,22 @@ Creating a new agent team with name: my-agent

```bash
.
├── config
│ ├── development.json
│ ├── launcher.yaml
│ └── module.yaml
├── main.py
└── src
└── my-agent
├── __init__.py
└── module
└── my-agent
├── config
│ ├── development.json
│ ├── launcher.yaml
│ └── module.yaml
├── main.py
└── src
└── my-agent
├── __init__.py
└── complex
└── module
├── __init__.py
├── sample_human_detector.py
├── sample_road_detector.py
└── sample_search.py
└── complex
├── __init__.py
├── sample_human_detector.py
├── sample_road_detector.py
└── sample_search.py
```

## エージェントを実行する
Expand Down
6 changes: 3 additions & 3 deletions docs/source/tutorial/install/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
パッケージをインストールするには、次のコマンドを実行します:

```bash
pip install adf_core_python
pip install git+https://github.com/adf-python/adf-core-python.git
```

## インストールの確認

インストールを確認するには、次のコマンドを実行します:

```bash
python -c "import adf_core_python; print(adf_core_python.__version__)"
pip show adf_core_python
```

パッケージが正しくインストールされている場合、パッケージのバージョン番号が表示されます
パッケージが正しくインストールされている場合、パッケージのバージョン番号などが表示されます