1️⃣Install DS2.ai

1-1. Windows

  1. Go to the link (https://www.docker.com/products/docker-desktop/) and install Docker Desktop.

  2. Execute the following command after running Powershell in administrator mode.

mkdir ds2ai
cd ds2ai
wget "https://assetdslab.s3.ap-southeast-1.amazonaws.com/cpu/docker-compose.yml" -outfile "docker-compose.yml"
docker-compose up -d

After successful installation, you can connect to http://localhost:13000 and run ds2.

After the initial installation is completed, you can connect after the update takes about 3 to 5 minutes.

This installation method allows using CPU resources (not support GPU). It does not support Object recognition model and Auto-Labeling. (Object recognition and Auto-Labeling function only works on GPU. It requires Linux OS and built-in Nvidia graphics card)

* If you want to delete it, execute the command below to complete the deletion.

sudo docker stop ds2ai-container
sudo docker rm ds2ai-container
sudo docker rmi dslabglobal/ds2ai:stable

1-2. Mac

  1. Go to the link (https://www.docker.com/products/docker-desktop/) and install Docker Desktop.

  2. After launching the terminal, run the following command:

mkdir ds2ai
cd ds2ai
wget https://assetdslab.s3.ap-southeast-1.amazonaws.com/cpu/docker-compose.yml
docker-compose up -d

After successful installation, you can connect to http://localhost:13000 and run ds2.

After the initial installation is completed, you can connect after the update takes about 3 to 5 minutes.

This installation method allows using CPU resources (not support GPU). It does not support Object recognition model and Auto-Labeling. (Object recognition and Auto-Labeling function only works on GPU. It requires Linux OS and built-in Nvidia graphics card)

* If you want to delete it, execute the command below to complete the deletion.

sudo docker stop ds2ai-container
sudo docker rm ds2ai-container
sudo docker rmi dslabglobal/ds2ai:stable

1-2. Linux (Ubuntu, CentOS or Windows WSL2 - Ubuntu 18.04)

Execute the following script to proceed with the installation.

wget https://assetdslab.s3.ap-southeast-1.amazonaws.com/ds2_install.sh
sudo bash ds2_install.sh

After successful installation, you can connect to http://localhost:13000 and run ds2.After the initial installation is completed, you can connect after the update takes about 3 to 5 minutes.

* If you want to delete it, execute the command below to complete the deletion.

sudo docker stop ds2ai-container
sudo docker rm ds2ai-container
sudo docker rmi dslabglobal/ds2ai:stable

If nvidia-driver is not installed, object recognition artificial intelligence generation and auto-labeling are not possible. (Available only if Nvidia graphics card is built-in among Linux OS)

Next Steps

2️⃣pageUpload Data

Do you have any other questions? [email protected]

Last updated