[GH-ISSUE #2744] [FEAT]: Windows Desktop Install Web UI #1763

Closed
opened 2026-02-22 18:26:24 -05:00 by yindo · 1 comment
Owner

Originally created by @quadcom on GitHub (Dec 1, 2024).
Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/2744

What would you like to see?

** Crosposted from DIscord

I've installed the Windows Desktop version of A-LLM and while I understand there is a team install option, in my network, it's my desktop that has a 4090. It would be a super time saver and an awesome addition if there was a way to enable a web-based UI that others on my LAN could access to use A-LLM and my GPU resources. Yes, there is Docker, but getting Docker up and running (on Win) while passing the GPU in, has proven to be challenging on the Windows platform. There's also no way that I can get ANOTHER 4090 for a Linux LLM box; I'd love to but it's not in the cards.

Originally created by @quadcom on GitHub (Dec 1, 2024). Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/2744 ### What would you like to see? _** Crosposted from DIscord_ I've installed the Windows Desktop version of A-LLM and while I understand there is a team install option, in my network, it's my desktop that has a 4090. It would be a super time saver and an awesome addition if there was a way to enable a web-based UI that others on my LAN could access to use A-LLM and my GPU resources. Yes, there is Docker, but getting Docker up and running (on Win) while passing the GPU in, has proven to be challenging on the Windows platform. There's also no way that I can get ANOTHER 4090 for a Linux LLM box; I'd love to but it's not in the cards.
yindo added the enhancementfeature request labels 2026-02-22 18:26:24 -05:00
yindo closed this issue 2026-02-22 18:26:25 -05:00
Author
Owner

@timothycarambat commented on GitHub (Dec 4, 2024):

You cannot just run the windows docker command?

$env:STORAGE_LOCATION="$HOME\Documents\anythingllm"; `
If(!(Test-Path $env:STORAGE_LOCATION)) {New-Item $env:STORAGE_LOCATION -ItemType Directory}; `
If(!(Test-Path "$env:STORAGE_LOCATION\.env")) {New-Item "$env:STORAGE_LOCATION\.env" -ItemType File}; `
docker run -d -p 3001:3001 `
--cap-add SYS_ADMIN `
-v "$env:STORAGE_LOCATION`:/app/server/storage" `
-v "$env:STORAGE_LOCATION\.env:/app/server/.env" `
-e STORAGE_DIR="/app/server/storage" `
mintplexlabs/anythingllm;

Then you can install Ollama on the same machine and done! Now you can connect AnythingLLM to Ollama and get full GPU support with the multi-user support you really want.

We wont serve the UI from the server like we do with Docker on Desktop because it will cause issues with some functionalities we have in the UI and honestly we dont want to encourage it or support it for desktop

@timothycarambat commented on GitHub (Dec 4, 2024): You cannot just run the windows docker command? ``` $env:STORAGE_LOCATION="$HOME\Documents\anythingllm"; ` If(!(Test-Path $env:STORAGE_LOCATION)) {New-Item $env:STORAGE_LOCATION -ItemType Directory}; ` If(!(Test-Path "$env:STORAGE_LOCATION\.env")) {New-Item "$env:STORAGE_LOCATION\.env" -ItemType File}; ` docker run -d -p 3001:3001 ` --cap-add SYS_ADMIN ` -v "$env:STORAGE_LOCATION`:/app/server/storage" ` -v "$env:STORAGE_LOCATION\.env:/app/server/.env" ` -e STORAGE_DIR="/app/server/storage" ` mintplexlabs/anythingllm; ``` Then you can install Ollama on the same machine and _done_! Now you can connect AnythingLLM to Ollama and get full GPU support with the multi-user support you really want. We wont serve the UI from the server like we do with Docker on Desktop because it will cause issues with some functionalities we have in the UI and honestly we dont want to encourage it or support it for desktop
yindo changed title from [FEAT]: Windows Desktop Install Web UI to [GH-ISSUE #2744] [FEAT]: Windows Desktop Install Web UI 2026-06-05 14:42:33 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#1763