TAC external app
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 sub-modules.
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 git@github.com: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.