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"
Parent topic: Download a Container