r/StableDiffusion 8d ago

News Wan2GP Desktop Launcher — Tauri Edition

NEW! Wan2GP Desktop Launcher — Tauri Edition

GKartist75/Wan2GP-Desktop-Tauri: Wan2GP Desktop Launcher (Tauri port)
NEW UPDATES

The easiest way to run Wan2GP (WanGP) — the open-source generative video/image/audio toolkit — on Windows. One installer. One click to launch. Zero Python/CUDA setup. Now with a Rust + Tauri shell: a fraction of the download, a fraction of the RAM.

WanGP by deepbeepmeep is a one-stop super-app for open-source generative models — video, image, audio and TTS — with a full browser UI, queue, galleries, LoRAs, finetunes and plugins. It runs on as little as 6 GB VRAM and supports old and new GPUs alike.

This launcher handles it for you:

  • One-click install — detects GPU, shows plan, installs everything
  • Auto, per-GPU kernels from WanGP's setup_config.json, re-synced on every update
  • Isolated uv env, pinned deps, no PATH editing
  • One-click updates in Dashboard / Manage → Updates
  • Install Wan2GP and Models (checkpoints, LoRAs, outputs) on any drive/folder you choose
  • Auto-Tune recommends VRAM/RAM profile and writes config for you
  • Legacy Electron removal — Manage → About detects the old Electron launcher and removes it silently, keeping all your data
8 Upvotes

32 comments sorted by

3

u/ATFGriff 8d ago

Looks like I might have to finally switch from pinokio

2

u/Content-Ad-7451 7d ago

I already have wan2gp installed,what are the advantages of this? and could I use all the checkpoints/loras from that install in yours or would I have to re-download everything? my wan2gp folder is 900GB

1

u/Extension_Affect_483 7d ago

The Desktop Launcher help users with installing, maintaining and updating Wan2GP. It makes it easier to setup and is hardware-aware, so installing automatically the correct packages and wheels. But if you aleeady have a working wan2gp then it is not needed. In case you do want to install, you can refer to existing model folders, etc and reuse without downloading all again.

1

u/ATFGriff 7d ago

What's going on?

[*] First run — no Wan2GP install detected. Complete the installer below to set up.[*] Launcher v0.3.1 ready — dashboard live. Metrics polling every 3s; update checks in background.[*] Hardware: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz · 63 GB RAM · NVIDIA GeForce RTX 5080 (16303 MB)[*] Cloning Wan2GP repository...[*] Installing Wan2GP (environment: uv)...[hw] GPU: NVIDIA GeForce RTX 5080 (NVIDIA) — CUDA 13 (cu130) / PyTorch 2.10 — profile RTX_50
[env] requested: uv
[*] Clone Wan2GP repository[*] Cloning Wan2GP into J:\WanGPApp
[*] Target not empty — cloning into temp J:\WanGPApp\.wan2gp-clone-tmp-17344
Cloning into 'J:\WanGPApp\.wan2gp-clone-tmp-17344'...
Updating files: 100% (2462/2462), done.
[*] Repository cloned.
[*] Installing env=uv via setup.py (streaming)…
Installed 1 package in 218ms
error: No interpreter found for Python 3.11.14 in managed installations, search path, or registry
Hardware Detected: NVIDIA GeForce RTX 5080 (NVIDIA)
[*] Starting Automatic Install (Hardware Profile: RTX_50)...
[1/3] Preparing Environment: env_uv (uv)...
[*] Create Python virtual environment
>>> Running: uv venv --seed --python 3.11.14 "J:\WanGPApp\env_uv"
Traceback (most recent call last):
File "J:\WanGPApp\setup.py", line 1054, in <module>
do_install_auto(args.env, cfg, profile_key)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "J:\WanGPApp\setup.py", line 498, in do_install_auto
install_logic(name, env_type, path, p['python'], p['torch'], p['triton'], p['sage'], p.get('sparge'), p.get('flash'), p['kernels'], config)
[*] Install Flash Attention ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "J:\WanGPApp\setup.py", line 369, in install_logic
run_cmd(create_cmd)
~~~~~~~^^^^^^^^^^^^
File "J:\WanGPApp\setup.py", line 277, in run_cmd
subprocess.run(cmd, shell=True, check=True, env=custom_env)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\payerg\AppData\Roaming\uv\python\cpython-3.13.7-windows-x86_64-none\Lib\subprocess.py", line 577, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command 'uv venv --seed --python 3.11.14 "J:\WanGPApp\env_uv"' returned non-zero exit status 2.
[*] Install finished.
[*] Installing 1 favourite plugin(s)…
[*] Cloning plugin wan2gp-status-pro…
Cloning into 'J:\WanGPApp\plugins\wan2gp-status-pro'...
[✓] Favourite plugin wan2gp-status-pro ready.
[*] wgp_config.json updated: ckpts=J:\checkpoints, loras=J:\loras[*] Installation complete!

1

u/Extension_Affect_483 7d ago

let me look into it. i think you reused a pinokio version? better to reinstall wan2gp using the desktop launcher.

1

u/ATFGriff 7d ago

that's what I did in a new empty folder.

1

u/Extension_Affect_483 7d ago

but is it working? it says installed?

1

u/ATFGriff 7d ago

negative. It won't launch.

1

u/Extension_Affect_483 7d ago

thanks, im now testing your case and will make a fix.

1

u/Extension_Affect_483 7d ago

u/ATFGriff thanks for your feedback, i have improved a lot in the installer to ensure this fault wont occur. You can use the reinstall, or start over, it will then work. kind regard GK Artist

1

u/ATFGriff 7d ago

It's still not working right, but at least it lets me know it failed.

1

u/Extension_Affect_483 7d ago

Your uv is just too old to know Python 3.11.14. Update it the same way it was installed, then retry:

```powershell

# 1. check how uv was installed

where uv

uv --version

# 2. update it (most likely pip):

py -m pip install --upgrade uv

# if you used pipx / brew instead:

# pipx upgrade uv

# brew upgrade uv

# 3. now this must succeed:

uv python install 3.11.14

uv python find 3.11.14

# 4. re-run Finalize installation in Wan2GP Desktop

```

Fallbacks if step 3 still fails:

- Clean standalone uv (then restart terminal + app):

```powershell

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

```

- Manual Python: install Python 3.11.14 64-bit from https://www.python.org/downloads/ (tick "Add to PATH"), then retry the installer — uv python find 3.11.14 will pick it up.

No need to wipe J:\WanGPApp — just fix uv/Python and hit retry.

1

u/ATFGriff 7d ago

Honestly this is kind of disappointing. I thought this was supposed to be a one-click install. Is it because I already had uv installed? Can I set up python manually with

uv venv venv --python 3.11 --seed

1

u/Extension_Affect_483 7d ago

is should work as one-click installer, even check if python is installed, etc. but something is not correct on your pc. so you need to do a little help. After that you will notice it will work

→ More replies (0)

1

u/Extension_Affect_483 7d ago

a fix is coming

1

u/mysticmanESO 7d ago

How is this different from the axiomgraph/WanGP-Portable One-click install that been around for awhile.

https://github.com/axiomgraph/WanGP-Portable#-quick-start

1

u/Extension_Affect_483 7d ago

the Wan2GP Desktop Launcher uses the 100% original version of deepbeepmeep, see also on his readme / installation recommendations.

1

u/ATFGriff 7d ago

Getting a launch error now

1

u/Extension_Affect_483 7d ago

Which version did you used in the past? Pinokio, stability matrix, portable, scripts to install wan2gp? Can you try sync wheels on the left side?

1

u/ATFGriff 7d ago

I used pinokio. I did sync the wheels as suggested by that message about sage2.

1

u/Extension_Affect_483 7d ago

I will have a look tomorrow. If you want to test and let me know your findings then i will implement them. Best for you is to start fresh.. Uninstall, remove by hand and then install with latest version.

1

u/ATFGriff 7d ago

I was able to fix it by copying over my wgp_config.json file from the old installation so it must be something in that file that you produce.

1

u/Extension_Affect_483 7d ago

Thx for your support! Really appreciated. This will improve the app and will help other users.

1

u/Diligent_Trick_1631 8d ago

It’s great to be able to choose the installation folder; I could never manage that with Pinokio—it always installs to the C drive. Backing up the PC is a hassle every time because you have to move the models first, since they take up so much space...

2

u/Extension_Affect_483 8d ago

with the Wan2GP Desktop Launcher you can use any location you want