[GH-ISSUE #1946] About running anything-llm on windows machine #1262

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

Originally created by @oicu0619 on GitHub (Jul 24, 2024).
Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/1946

What would you like to see?

It is possible to running the web version of anything-llm on a windows machine? I think there is a windows desktop version, but this repository can not run on windows by default. Thanks for the help!

Originally created by @oicu0619 on GitHub (Jul 24, 2024). Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/1946 ### What would you like to see? It is possible to running the web version of anything-llm on a windows machine? I think there is a windows desktop version, but this repository can not run on windows by default. Thanks for the help!
yindo added the enhancementfeature request labels 2026-02-22 18:23:58 -05:00
yindo closed this issue 2026-02-22 18:23:58 -05:00
Author
Owner

@timothycarambat commented on GitHub (Jul 24, 2024):

Yes, but you will need docker.
docker pull mintplexlabs/anythingllm

# Run this in powershell terminal
$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;

https://docs.useanything.com/installation/self-hosted/local-docker

@timothycarambat commented on GitHub (Jul 24, 2024): Yes, but you will need docker. `docker pull mintplexlabs/anythingllm` ```powershell # Run this in powershell terminal $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; ``` https://docs.useanything.com/installation/self-hosted/local-docker
yindo changed title from About running anything-llm on windows machine to [GH-ISSUE #1946] About running anything-llm on windows machine 2026-06-05 14:39:48 -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#1262