-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from fetchai/develop
Release 0.1.5
- Loading branch information
Showing
173 changed files
with
6,386 additions
and
1,472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,15 +9,23 @@ First, install the package from [pypi](https://pypi.org/project/aea/): | |
pip install aea | ||
` | ||
|
||
Then, build your agent as described in the [AEA CLI readme](../master/aea/cli/README.md) | ||
Then, build your agent as described in the [AEA CLI readme](../master/aea/cli/README.md) or in the [examples](../master/examples). | ||
|
||
## Dependencies | ||
## Install from Source | ||
|
||
## Cloning | ||
|
||
This repository contains submodules. Clone with recursive strategy: | ||
|
||
git clone [email protected]:fetchai/agents-aea.git --recursive && cd agents-aea | ||
|
||
### Dependencies | ||
|
||
All python specific dependencies are specified in the Pipfile (and installed via the commands specified in 'Preliminaries'). | ||
|
||
Or, you can have more control on the installed dependencies by leveraging the setuptools' extras mechanism (more details later). | ||
|
||
## Preliminaries | ||
### Preliminaries | ||
|
||
- Create and launch a virtual environment: | ||
|
||
|
@@ -27,9 +35,9 @@ Or, you can have more control on the installed dependencies by leveraging the se | |
|
||
pip install .[all] | ||
|
||
- To install only specific extra dependencies, e.g. `cli` and `oef-protocol`: | ||
- To install only specific extra dependencies, e.g. `cli`: | ||
|
||
pip install .[cli,oef-channel] | ||
pip install .[cli] | ||
|
||
## Contribute | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.