Get Started

Get Started with the Intel® AI Analytics Toolkit for Linux*

ID 766885
Date 7/13/2023
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Using Containers with the Command Line

Intel® AI Analytics Toolkit

Download pre-built containers directly. The command below for CPU will leave you at a command prompt, inside the container, in interactive mode.

CPU

image=intel/oneapi-aikit
docker run -it "$image"
 

Using Intel® Advisor, Intel® Inspector or VTune™ with Containers

When using these tools, extra capabilities have to be provided to the container:

--cap-add=SYS_ADMIN --cap-add=SYS_PTRACE

docker run --cap-add=SYS_ADMIN --cap-add=SYS_PTRACE \
--device=/dev/dri -it "$image"