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
+
On Linux host you could setup `nvidia-container-runtime`. On Windows
205
+
it is quite different and not checked at moment.
206
+
207
+
##### Linux setup:
208
+
209
+
1. Install nvidia-container-runtime:
210
+
```bash
211
+
sudo apt-get install nvidia-container-runtime
212
+
```
213
+
214
+
1. Edit/create the /etc/docker/daemon.json with content:
215
+
```json
216
+
{
217
+
"runtimes": {
218
+
"nvidia": {
219
+
"path": "/usr/bin/nvidia-container-runtime",
220
+
"runtimeArgs": []
221
+
}
222
+
},
223
+
"default-runtime": "nvidia"
224
+
}
225
+
```
226
+
227
+
1. Restart docker daemon:
228
+
```bash
229
+
sudo systemctl restart docker
230
+
```
231
+
232
+
Finally build and run docker container with:
233
+
```bash
234
+
docker build -t comfy3d .&& docker run --rm -it -p 8188:8188 --gpus all comfy3d
235
+
```
204
236
205
237
## Run:
206
238
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