2.2. Installation¶
Installation can be done with fork ait-template(https://github.com/aistairc/ait-template
) from GitHub and clone them to any local directory.
Git must be installed before perform this.
Please prepare for the environment with docker because Jupyter Lab runs on docker containers.
2.2.1. Structure of source files.¶
AIT template and AIT development environment are stored under the {YourAITname}
directory.
In this guide, we basically perform works under this directory.
ait-template <---- AIT template
├─deploy <---- Files for AIT deployment
├─develop <---- AIT body and meta information
├─local_qai <---- Placement of input to AIT, etc
├─tool <---- Development environment
├─LICENSE.txt
├─README.md
2.2.2. Installation of Docker¶
Please install Docker Desktop following guideline below.
Important
At the time of writing this guide, Docker Desktop has terms of use which restrict free use under limited condition. So it may not be available without problems on the user’s work environment or company. You must read, confirm and compliy to their terms of use.
Note
Port 9888 is used, but if you want to change it, please change Ports in docker-compose.yml as follows.
Example: When changing the port from 9888 to 9889
File Path
ait-template/tool/docker/docker-compose.yml
Before change
ports: 9888:8888
After change
ports: 9889:8888