How to install Fooocus on A low spec machine with 40gb Ram and 6gb vram - included script #4063
GlitchModus
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Guys . To anyone looking to get this working quickly to make images I have some ideas I used to install the various downloads to get you going asap.
Top 5 Platforms to Install. Im currently only using Fooocus and once I get the animaton working , I will share the method. I primarily make music and have decided to make my own videos, graphics and landing pages using mainly open sources tools . Im looking to connect with musicians and artists to grow , and if you like Techno, Psy , DNB, ,underground music please give me a follow on insta - https://www.instagram.com/psy_chasm/
1 | Stable Diffusion (via ComfyUI) | Text-to-Image, Image-to-Image | Powerful modular AI engine
2 | Deforum | Image-to-Video (SD animation) | Makes AI-generated video from image+prompt
3 | InvokeAI | GUI for SD | Beginner-friendly frontend
4 | Automatic1111 WebUI | SD with plugins | Industry-standard toolkit
5 | Fooocus | 1-click SD GUI | Super simple AI image gen
Copy/paste in terminal and run the below script:
@echo off
title AI Software Setup Script
color 0A
echo Installing core dependencies...
winget install --id Git.Git -e --source winget
winget install --id Python.Python.3.10 -e --source winget
winget install --id 7zip.7zip -e --source winget
echo Cloning ComfyUI...
git clone https://github.com/comfyanonymous/ComfyUI.git
echo Cloning Automatic1111 WebUI...
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
echo Cloning InvokeAI...
git clone https://github.com/invoke-ai/InvokeAI.git
echo Cloning Deforum for animation...
git clone https://github.com/deforum-art/deforum-for-automatic1111-webui.git stable-diffusion-webui/extensions/deforum
echo Cloning Fooocus...
git clone https://github.com/lllyasviel/Fooocus.git
echo Done! Now installing virtual environments and dependencies...
REM ComfyUI install
cd ComfyUI
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
cd..
REM Automatic1111 install
cd stable-diffusion-webui
python -m venv venv
venv\Scripts\activate
.\webui-user.bat --skip-torch-cuda-test
cd..
REM InvokeAI setup
cd InvokeAI
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
cd..
REM Fooocus install
cd Fooocus
python -m venv venv
venv\Scripts\activate
pip install -r requirements_versions.txt
cd..
echo INSTALLATION COMPLETE. Run each tool by opening their folder and executing launch.bat or python script.
pause
📺 PART 2: “Video-style” Guide in Text Format
[INTRO SCENE]
🎬 Title: "How to Install 5 AI Tools with 1 Script!"
[Scene 1: Setup]
🖥️ "Welcome! Let’s get your PC ready for AI image + video generation!"
Open Notepad.
Paste the batch script above.
Save as install-ai-tools.bat
Right-click the file → “Run as Administrator”
[Scene 2: Installation Walkthrough]
🔧 "The script will automatically:"
Install Python, Git, 7-Zip
Clone all the AI tools from GitHub
Set up Python environments
Install required Python libraries
⏳ "Give it 10-20 minutes, depending on your internet speed."
[Scene 3: Running the Tools]
📂 "After setup:"
Go into ComfyUI/ → run run_nvidia.bat
Go into stable-diffusion-webui/ → run webui-user.bat
Open InvokeAI via its shortcut or invoke.py
Start Fooocus by running python entry_with_update.py
Use Deforum from inside the WebUI extensions
[Scene 4: Result]
🧠 "You now have a studio of 20+ AI tools, including:"
Text-to-image (SD, Fooocus)
Image-to-video (Deforum)
Animated prompts (ComfyUI)
Face generation, art, anime, realistic, surreal, and more!
✅ "Congrats! You're now set up for AI-powered content creation — no coding needed."
Beta Was this translation helpful? Give feedback.
All reactions