TAC External App¶
Note
This app is no longer maintained.
The original TAC has its own repo.
Follow the instructions below to build and run the TAC demo.
Requirements¶
Make sure you are running Docker and Docker Compose.
Quick Start¶
Clone the repo to include submodules.
git clone [email protected]:fetchai/agents-tac.git --recursive && cd agents-tac
Check you have pipenv
.
If you don't have it, install it. Instructions are here.
Create and launch a virtual environment.
Install the dependencies.
Install the package.
Run the launch script. This may take a while.
The Visdom server is now running.
The controller GUI at http://localhost:8097 provides real time insights.
In the Environment tab, make sure you have the tac_controller
environment selected.
Alternative Build and Run¶
In a new terminal window, clone the repo, build the sandbox, and launch it.
git clone [email protected]:fetchai/agents-tac.git --recursive && cd agents-tac
pipenv --python 3.7 && pipenv shell
python setup.py install
cd sandbox && docker-compose build
docker-compose up
In a new terminal window, enter the virtual environment, and connect a template agent to the sandbox.
Click through to the controller GUI.
Possible Gotchas¶
Stop all running containers before restart.
To remove all images, run the following command.