You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- For those who want to run it inside Google Colab, you can check the [install instruction from @lovisdotio](https://github.com/MrForExample/ComfyUI-3D-Pack/issues/13)
200
200
201
-
#### Install with docker:
202
-
203
-
`docker build -t test . && docker run --rm -it -p8188:8188 test`
201
+
#### Install and run with docker:
202
+
203
+
Gpu support during Docker build time is required to install all requirenents,
204
+
setup `nvidia-container-runtime` on host by:
205
+
206
+
1. Install nvidia-container-runtime:
207
+
```bash
208
+
sudo apt-get install nvidia-container-runtime
209
+
```
210
+
211
+
1. Edit/create the /etc/docker/daemon.json with content:
212
+
```json
213
+
{
214
+
"runtimes": {
215
+
"nvidia": {
216
+
"path": "/usr/bin/nvidia-container-runtime",
217
+
"runtimeArgs": []
218
+
}
219
+
},
220
+
"default-runtime": "nvidia"
221
+
}
222
+
```
223
+
224
+
1. Restart docker daemon:
225
+
```bash
226
+
sudo systemctl restart docker
227
+
```
228
+
229
+
1. Finally build and run docker container:
230
+
```bash
231
+
docker build -t comfy3d .&& docker run --rm -it -p 8188:8188 --gpus all comfy3d
232
+
```
204
233
205
234
## Run:
206
235
Copy the files inside folder [__New_ComfyUI_Bats](./_New_ComfyUI_Bats/) to your ComfyUI root directory, and double click run_nvidia_gpu_miniconda.bat to start ComfyUI!
0 commit comments