From 1b554fa2fd3a5874b0c0c7c0263fa361ca4e2d22 Mon Sep 17 00:00:00 2001 From: JiaqingFu <1129973724@qq.com> Date: Fri, 7 Nov 2025 16:04:22 +0800 Subject: [PATCH] [Feat]support container install docs --- docs/get_started/Installation.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/get_started/Installation.md b/docs/get_started/Installation.md index 9e9b296ac7..f441d1a83e 100644 --- a/docs/get_started/Installation.md +++ b/docs/get_started/Installation.md @@ -11,6 +11,16 @@ We currently provide three methods to install **TileScale**: +**(optional)Prepare the container**: + +```bash +docker pull nvcr.io/nvidia/pytorch:25.03-py3 +docker run --name tilescale --ipc=host --network=host --privileged --cap-add=SYS_ADMIN --shm-size=10g --gpus=all -it nvcr.io/nvidia/pytorch:25.03-py3 /bin/bash +echo -n > /etc/pip/constraint.txt +bash Miniconda3-latest-Linux-x86_64.sh # install conda +conda install -c conda-forge libstdcxx-ng +``` + 1. **Clone the Repository**: ```bash