From 51af0be7802264aedc741711cc3592405083fa51 Mon Sep 17 00:00:00 2001 From: Alfin Auzikri Date: Mon, 12 Jun 2023 22:29:44 +0700 Subject: [PATCH] Update tensorflow_install.md (#2237) * Update tensorflow_install.md Fixed writing commands so that when executed by copy paste it doesn't cause an error. * Update tensorflow_install.md Following @saadrahim's suggestion of using "\" to signify a line break in bash. --- docs/how_to/tensorflow_install/tensorflow_install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/how_to/tensorflow_install/tensorflow_install.md b/docs/how_to/tensorflow_install/tensorflow_install.md index ae8f55bff..df0d12547 100644 --- a/docs/how_to/tensorflow_install/tensorflow_install.md +++ b/docs/how_to/tensorflow_install/tensorflow_install.md @@ -33,8 +33,8 @@ Follow these steps: 2. Once you have pulled the image, run it by using the command below: ```bash - docker run -it --network=host --device=/dev/kfd --device=/dev/dri - --ipc=host --shm-size 16G --group-add video --cap-add=SYS_PTRACE + docker run -it --network=host --device=/dev/kfd --device=/dev/dri \ + --ipc=host --shm-size 16G --group-add video --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined rocm/tensorflow:latest ```