Vitis AI environment on PC --- ref : https://docs.amd.com/r/2.5-English/ug1414-vitis-ai/Quick-Start 1.Install docker --- ref : https://docs.docker.com/engine/install/ubuntu/ follow the guidance to install docker on your local ubuntu  you can copy following cmd: ``` # Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl sudo install -m 0755 -d /etc/apt/keyrings sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc sudo chmod a+r /etc/apt/keyrings/docker.asc # Add the repository to Apt sources: echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \ sudo tee /etc/apt/sources.list.d/docker.list > /dev/null sudo apt-get update ```  ``` sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin sudo systemctl status docker sudo systemctl start docker ```  ``` sudo docker run hello-world ``` If you successfully install docker , it will show :  2.Set up Vitis AI's environment by docker --- download the img file of vitis-AI-cpu ``` sudo docker pull xilinx/vitis-ai-cpu:latest ```  check the img file is download ``` sudo docker images ```  3.Start Vitis AI --- ``` ./docker_run.sh xilinx/vitis-ai-cpu:latest ``` If success it will be like following : 
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up