-
Notifications
You must be signed in to change notification settings - Fork 8
[Feat]support container install docs #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -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 | ||||||||
|
||||||||
| 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 | |
| docker run --name tilescale --ipc=host --network=host --shm-size=10g --gpus=all -it nvcr.io/nvidia/pytorch:25.03-py3 /bin/bash |
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Miniconda installer script is referenced without showing how to obtain it. Add a preceding step to download the installer, such as wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh or document that this assumes the installer is already present.
| echo -n > /etc/pip/constraint.txt | |
| echo -n > /etc/pip/constraint.txt | |
| wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh # download Miniconda installer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix hard tabs and incomplete setup instructions.
Two issues here:
- Line 18 contains hard tabs instead of spaces, which violates Markdown formatting standards (MD010).
- Line 20 references
Miniconda3-latest-Linux-x86_64.shwithout showing how to download or locate it, making the instructions incomplete.
```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
+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
+wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
+bash Miniconda3-latest-Linux-x86_64.sh # install conda
conda install -c conda-forge libstdcxx-ng
<details>
<summary>🧰 Tools</summary>
<details>
<summary>🪛 markdownlint-cli2 (0.18.1)</summary>
18-18: Hard tabs
Column: 160
(MD010, no-hard-tabs)
</details>
</details>
<details>
<summary>🤖 Prompt for AI Agents</summary>
In docs/get_started/Installation.md around lines 16 to 22, fix the Markdown code
block by replacing hard tabs with spaces (remove the trailing hard tab on the
docker run line) and make the Miniconda install step complete by adding a
download command prior to running the installer (e.g., download
Miniconda3-latest-Linux-x86_64.sh from the official URL), then run the installer
as shown; ensure the code block uses spaces only and the sequence is: docker
pull, docker run (no trailing tab), echo to constraint.txt, wget the Miniconda
script, bash the installer, and then conda install libstdcxx-ng.
</details>
<!-- This is an auto-generated comment by CodeRabbit -->
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a space after '(optional)' for proper formatting. Should be '(optional) Prepare'.