Skip to content

Commit de25e59

Browse files
committed
docs: update installation instructions and directory structure in quickstart and install tutorials
1 parent 4917ee6 commit de25e59

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

docs/source/quickstart/quickstart.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
パッケージをインストールするには、次のコマンドを実行します:
1313

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

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

3535
```bash
3636
.
37-
├── config
38-
│ ├── development.json
39-
│ ├── launcher.yaml
40-
│ └── module.yaml
41-
├── main.py
42-
└── src
43-
└── my-agent
44-
├── __init__.py
45-
└── module
37+
└── my-agent
38+
├── config
39+
│ ├── development.json
40+
│ ├── launcher.yaml
41+
│ └── module.yaml
42+
├── main.py
43+
└── src
44+
└── my-agent
4645
├── __init__.py
47-
└── complex
46+
└── module
4847
├── __init__.py
49-
├── sample_human_detector.py
50-
├── sample_road_detector.py
51-
└── sample_search.py
48+
└── complex
49+
├── __init__.py
50+
├── sample_human_detector.py
51+
├── sample_road_detector.py
52+
└── sample_search.py
5253
```
5354

5455
## エージェントを実行する

docs/source/tutorial/install/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
パッケージをインストールするには、次のコマンドを実行します:
1515

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

2020
## インストールの確認
2121

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

2424
```bash
25-
python -c "import adf_core_python; print(adf_core_python.__version__)"
25+
pip show adf_core_python
2626
```
2727

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

0 commit comments

Comments
 (0)