comfyui-nuvu 1.0.0__cp39-abi3-win_amd64.whl → 1.0.17__cp39-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of comfyui-nuvu might be problematic. Click here for more details.
- comfyui_nuvu/__init__.py +1 -1
- comfyui_nuvu/nuvu_server.pyd +0 -0
- comfyui_nuvu/pip_utils.pyd +0 -0
- comfyui_nuvu/uv_installer.pyd +0 -0
- comfyui_nuvu/web/analytics.pyd +0 -0
- comfyui_nuvu/web/installers/__init__.py +12 -1
- comfyui_nuvu/web/installers/cuda_installer.pyd +0 -0
- comfyui_nuvu/web/installers/onnxruntime_installer.pyd +0 -0
- comfyui_nuvu/web/installers/pytorch_installer.pyd +0 -0
- comfyui_nuvu/web/installers/sageattention_installer.pyd +0 -0
- comfyui_nuvu/web/installers/shared.pyd +0 -0
- comfyui_nuvu/web/installers/triton_installer.pyd +0 -0
- comfyui_nuvu/web/installers/vs_build_tools_installer.pyd +0 -0
- comfyui_nuvu/web/model_downloads.pyd +0 -0
- comfyui_nuvu/web/package_installer.pyd +0 -0
- comfyui_nuvu/web/setup_modules/auth.pyd +0 -0
- comfyui_nuvu/web/setup_modules/config.pyd +0 -0
- comfyui_nuvu/web/setup_modules/custom_nodes.pyd +0 -0
- comfyui_nuvu/web/setup_modules/downloads.pyd +0 -0
- comfyui_nuvu/web/setup_modules/environment.pyd +0 -0
- comfyui_nuvu/web/setup_modules/file_operations.pyd +0 -0
- comfyui_nuvu/web/setup_modules/logging_setup.pyd +0 -0
- comfyui_nuvu/web/setup_modules/utils.pyd +0 -0
- comfyui_nuvu/web/workflow_downloader.pyd +0 -0
- {comfyui_nuvu-1.0.0.dist-info → comfyui_nuvu-1.0.17.dist-info}/METADATA +59 -21
- {comfyui_nuvu-1.0.0.dist-info → comfyui_nuvu-1.0.17.dist-info}/RECORD +6 -4
- {comfyui_nuvu-1.0.0.dist-info → comfyui_nuvu-1.0.17.dist-info}/WHEEL +0 -0
- {comfyui_nuvu-1.0.0.dist-info → comfyui_nuvu-1.0.17.dist-info}/top_level.txt +0 -0
comfyui_nuvu/__init__.py
CHANGED
|
@@ -8,7 +8,7 @@ Route registration happens only when ComfyUI loads the custom node entrypoint
|
|
|
8
8
|
(custom_nodes/ComfyUI-nuvu/__init__.py), NOT when importing this package.
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
|
-
__version__ = "1.0.
|
|
11
|
+
__version__ = "1.0.17" # Replaced by CI from git tag
|
|
12
12
|
__all__ = ["__version__"]
|
|
13
13
|
|
|
14
14
|
|
comfyui_nuvu/nuvu_server.pyd
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
comfyui_nuvu/web/analytics.pyd
CHANGED
|
Binary file
|
|
@@ -3,7 +3,14 @@
|
|
|
3
3
|
Each installer module exposes install/uninstall entry points used by web/package_installer.py.
|
|
4
4
|
"""
|
|
5
5
|
|
|
6
|
-
from comfyui_nuvu.web.installers.shared import
|
|
6
|
+
from comfyui_nuvu.web.installers.shared import (
|
|
7
|
+
_verify_prerequisites,
|
|
8
|
+
logger,
|
|
9
|
+
get_pip_base_cmd,
|
|
10
|
+
make_pip_install_cmd,
|
|
11
|
+
make_pip_uninstall_cmd,
|
|
12
|
+
make_pip_show_cmd,
|
|
13
|
+
)
|
|
7
14
|
|
|
8
15
|
from comfyui_nuvu.web.installers.pytorch_installer import install_pytorch, reinstall_custom_nodes
|
|
9
16
|
from comfyui_nuvu.web.installers.sageattention_installer import install_sageattention, uninstall_sageattention
|
|
@@ -16,6 +23,10 @@ __all__ = [
|
|
|
16
23
|
# Shared utilities
|
|
17
24
|
'_verify_prerequisites',
|
|
18
25
|
'logger',
|
|
26
|
+
'get_pip_base_cmd',
|
|
27
|
+
'make_pip_install_cmd',
|
|
28
|
+
'make_pip_uninstall_cmd',
|
|
29
|
+
'make_pip_show_cmd',
|
|
19
30
|
# PyTorch
|
|
20
31
|
'install_pytorch',
|
|
21
32
|
'reinstall_custom_nodes',
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: comfyui-nuvu
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary: www.nuvulabs.ai |
|
|
3
|
+
Version: 1.0.17
|
|
4
|
+
Summary: www.nuvulabs.ai | Install missing models & custom nodes, production-ready workflows, and dependency installations including SageAttention and Triton.
|
|
5
5
|
Author: Nuvu Labs
|
|
6
6
|
License: Proprietary
|
|
7
7
|
Project-URL: Homepage, https://github.com/nuvulabs/ComfyUI-Nuvu
|
|
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
17
17
|
Requires-Python: >=3.9
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
Requires-Dist: requests>=2.31.0
|
|
20
|
-
Requires-Dist: huggingface_hub[hf_transfer]
|
|
20
|
+
Requires-Dist: huggingface_hub[hf_transfer]<1.0,>=0.34.0
|
|
21
21
|
Requires-Dist: hf_xet
|
|
22
22
|
Requires-Dist: keyring>=24.3.0
|
|
23
23
|
Dynamic: requires-python
|
|
@@ -34,26 +34,32 @@ Nuvu Labs is an agency that excels at implementing, scaling, and finetuning AI p
|
|
|
34
34
|
|
|
35
35
|
## Table of Contents
|
|
36
36
|
|
|
37
|
-
- [The Nuvu Advantage](#the-
|
|
38
|
-
- [Installing Nuvu](#installing-
|
|
37
|
+
- [The Nuvu Advantage](#the-nuvu-advantage)
|
|
38
|
+
- [Installing Nuvu](#installing-nuvu)
|
|
39
39
|
- [Auto-Installers](#auto-installers)
|
|
40
|
+
- [Windows Install](#windows-install)
|
|
41
|
+
- [Linux Install](#linux-install)
|
|
40
42
|
- [Comfy Manager](#comfy-manager)
|
|
41
|
-
- [Manual Install](#manual-install)
|
|
42
43
|
- [RunPod Template](#runpod-template)
|
|
44
|
+
- [Docker](#docker)
|
|
43
45
|
- [Create an Account](#create-an-account)
|
|
44
46
|
- [Free Features](#free-features)
|
|
45
47
|
- [Paid Features](#paid-features)
|
|
46
|
-
- [How to create
|
|
47
|
-
- [How to subscribe](#how-to-subscribe)
|
|
48
|
-
- [Using Nuvu](#using-
|
|
49
|
-
- [ComfyUI Optimizer](#comfyui-optimizer)
|
|
48
|
+
- [How to create a free account](#how-to-create-a-free-account)
|
|
49
|
+
- [How to subscribe to Nuvu Premium](#how-to-subscribe-to-nuvu-premium)
|
|
50
|
+
- [Using Nuvu](#using-nuvu)
|
|
50
51
|
- [Workflow Installer](#workflow-installer)
|
|
51
52
|
- [Subgraphs](#subgraphs)
|
|
53
|
+
- [Install Missing](#install-missing)
|
|
52
54
|
- [Model Installer](#model-installer)
|
|
53
|
-
- [
|
|
54
|
-
- [User Configuration](#user-configuration)
|
|
55
|
-
- [How Can We Help?](#how-can-we-help)
|
|
56
|
-
- [
|
|
55
|
+
- [ComfyUI Optimizer](#comfyui-optimizer)
|
|
56
|
+
- [User Configuration](#user-configuration)
|
|
57
|
+
- [How Can We Help?](#how-can-we-help)
|
|
58
|
+
- [Support](#support)
|
|
59
|
+
- [Documentation](#documentation)
|
|
60
|
+
- [Logout](#logout)
|
|
61
|
+
- [Restart ComfyUI](#restart-comfyui)
|
|
62
|
+
- [Refresh Page](#refresh-page)
|
|
57
63
|
|
|
58
64
|
## The Nuvu Advantage
|
|
59
65
|
|
|
@@ -99,7 +105,7 @@ Your default browser should pop open when ComfyUI starts. You can slo navigate t
|
|
|
99
105
|
#### Linux Install
|
|
100
106
|
Place the .sh file in the folder location that you want to install ComfyUI-Nuvu in. Open a shell and run:
|
|
101
107
|
|
|
102
|
-
```./
|
|
108
|
+
```./linux_install_nuvu_comfy.sh```
|
|
103
109
|
|
|
104
110
|
This will clone ComfyUI into your current folder. Inside the ComfyUI Folder, you will find a file called "run_comfy.sh". Double click this file or open a shell and run it to launch ComfyUI. Wait until the terminal stops producing text and then go to the next step. You should also see a Nuvu-ComfyUI icon on your desktop, which you can use to launch Nuvu.
|
|
105
111
|
|
|
@@ -107,13 +113,24 @@ Navigate to [localhost:8188](localhost:8188) or [127.0.0.1:8188](127.0.0.1:8188)
|
|
|
107
113
|
|
|
108
114
|
### Comfy Manager
|
|
109
115
|
|
|
110
|
-
|
|
116
|
+
Install and open the [ComfyUI-Manager](https://github.com/Comfy-Org/ComfyUI-Manager)
|
|
117
|
+

|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
Search for "Nuvu" and click the ComfyUI-Nuvu "Install" button.
|
|
121
|
+

|
|
122
|
+
|
|
123
|
+
Click "Restart" after the install completes, and then refresh your browser after ComfyUI comes back online.
|
|
124
|
+

|
|
125
|
+
|
|
126
|
+
After restarting, you should see the Nuvu button in your toolbar.
|
|
127
|
+

|
|
111
128
|
|
|
112
129
|
### RunPod Template
|
|
113
130
|
|
|
114
|
-
Use our referral code to sign up for RunPod if you don't already have an account! [https://runpod.io?ref=
|
|
131
|
+
Use our referral code to sign up for RunPod if you don't already have an account! [https://runpod.io?ref=ffbuz4zw](https://runpod.io?ref=ffbuz4zw)
|
|
115
132
|
|
|
116
|
-
Nuvu Labs provides a RunPod template to quickly deploy ComfyUI from anywhere, even if you don't own a GPU yourself. You can find it [at this link](https://console.runpod.io/deploy?template=
|
|
133
|
+
Nuvu Labs provides a RunPod template to quickly deploy ComfyUI from anywhere, even if you don't own a GPU yourself. You can find it [at this link](https://console.runpod.io/deploy?template=0lhzij38ow&ref=ffbuz4zw)
|
|
117
134
|
|
|
118
135
|
When you click on the link and have a valid account created, you'll be prompted to start a pod.
|
|
119
136
|

|
|
@@ -145,7 +162,7 @@ docker run -d \
|
|
|
145
162
|
-p 8188:8188 \
|
|
146
163
|
-p 8888:8888 \
|
|
147
164
|
-v /path/to/workspace:/workspace \
|
|
148
|
-
|
|
165
|
+
docker.io/nuvulabs/comfyui-nuvu:latest
|
|
149
166
|
```
|
|
150
167
|
|
|
151
168
|
## Create an Account
|
|
@@ -164,7 +181,7 @@ docker run -d \
|
|
|
164
181
|
- 400+ workflows in the roadmap
|
|
165
182
|
- Subgraphs published straight into your library to use as nodes
|
|
166
183
|
- Model Auto-Installer
|
|
167
|
-
-
|
|
184
|
+
- Install All Missing Models & Custom Nodes for a workflow
|
|
168
185
|
|
|
169
186
|
### How to create a free account
|
|
170
187
|
|
|
@@ -205,23 +222,44 @@ After subscribing, head back to ComfyUI, refresh your browser, and you should se
|
|
|
205
222
|
## Using Nuvu
|
|
206
223
|
|
|
207
224
|
### Workflow Installer
|
|
225
|
+

|
|
226
|
+
|
|
227
|
+
Choose from over 100 optimized workflows to install directly into you ComfyUI environment. No need to worry about installing custom nodes or models, everything will install for you.
|
|
208
228
|
|
|
209
229
|
#### Subgraphs
|
|
230
|
+

|
|
231
|
+
|
|
232
|
+
When a workflow is installed, its subgraphs are also added to your library. Search for them like any other custom node, and chain them together for maximum productivity.
|
|
210
233
|
|
|
211
234
|
### Install Missing
|
|
212
|
-
|
|
235
|
+
|
|
236
|
+

|
|
237
|
+
|
|
238
|
+
Allow users to open any workflow in ComfyUI and Nuvu will attempt to find all custom nodes and models needed for that workflow, and install them for you. No more searching through the manager or scouring huggingface to find the correct model. It is the user's responsiblity to verify all of the files and custom nodes are compatible with their environment. Nuvu does not guarantee stability through the Install Missing feature.
|
|
213
239
|
|
|
214
240
|
### Model Installer
|
|
241
|
+
Choose from ~2000 models to install directly into your ComfyUI environment.
|
|
215
242
|
|
|
216
243
|
### ComfyUI Optimizer
|
|
244
|
+
Ever had trouble installing SageAttention or Triton, or what about upgrading PyTorch? The ComfyUI Optimizer gives you this ability and more with just a few clicks.
|
|
217
245
|
|
|
218
246
|
### User Configuration
|
|
247
|
+
Manage the devices that Nuvu is registered on, the huggingface token for downloading models, and the Extra Model Paths where models are downloaded and loaded from.
|
|
219
248
|
|
|
220
249
|
### How Can We Help?
|
|
250
|
+
Do you work in a studio or just need help on a passion project? Nuvu has the experts to get you to the finish line more efficiently than ever before. Submit an inquiry on this tab to get in touch with us.
|
|
221
251
|
|
|
222
252
|
### Support
|
|
253
|
+
If you're having issues with your account or any Nuvu functionality, submit an issue here.
|
|
223
254
|
|
|
224
255
|
### Documentation
|
|
256
|
+
Learn all there is to know about Nuvu Labs.
|
|
225
257
|
|
|
226
258
|
### Logout
|
|
259
|
+
Log out of Nuvu.
|
|
260
|
+
|
|
261
|
+
### Restart ComfyUI
|
|
262
|
+
Restart the ComfyUI server. Useful if a workflow is frozen or you need to dump VRAM quickly.
|
|
227
263
|
|
|
264
|
+
### Refresh Page
|
|
265
|
+
Refresh the browser tab.
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
comfyui_nuvu/nuvu_server.pyd,,
|
|
2
|
+
comfyui_nuvu/pip_utils.pyd,,
|
|
3
|
+
comfyui_nuvu/uv_installer.pyd,,
|
|
2
4
|
comfyui_nuvu/__init__.py,,
|
|
3
5
|
comfyui_nuvu/web/analytics.pyd,,
|
|
4
6
|
comfyui_nuvu/web/model_downloads.pyd,,
|
|
@@ -22,7 +24,7 @@ comfyui_nuvu/web/setup_modules/file_operations.pyd,,
|
|
|
22
24
|
comfyui_nuvu/web/setup_modules/logging_setup.pyd,,
|
|
23
25
|
comfyui_nuvu/web/setup_modules/utils.pyd,,
|
|
24
26
|
comfyui_nuvu/web/setup_modules/__init__.py,,
|
|
25
|
-
comfyui_nuvu-1.0.
|
|
26
|
-
comfyui_nuvu-1.0.
|
|
27
|
-
comfyui_nuvu-1.0.
|
|
28
|
-
comfyui_nuvu-1.0.
|
|
27
|
+
comfyui_nuvu-1.0.17.dist-info/METADATA,,
|
|
28
|
+
comfyui_nuvu-1.0.17.dist-info/top_level.txt,,
|
|
29
|
+
comfyui_nuvu-1.0.17.dist-info/WHEEL,,
|
|
30
|
+
comfyui_nuvu-1.0.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|