You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/bin/bash
cd /Users/YOUR_USERNAME/ruinedFooocus
source venv/bin/activate
python launch.py --disable-cuda-malloc --all-in-fp16 --always-high-vram --api-port 7865
Make it executable:
chmod +x start_ruinedfooocus.sh
NOTES:
Replace YOUR_USERNAME with your actual username in all paths
First launch will take time as it downloads required models
The web interface will open at http://127.0.0.1:7865/
Ignore warnings about gradio version
Ignore any warnings about playsound efficiency
Ensure you have enough disk space for models (~10GB recommended)
Have a working internet connection for the first run to download models
These instructions have been tested on macOS with M1/M2 chips.
OPTIONAL APPLESCRIPT:
If you want to create an AppleScript for easy launching, open Script Editor and paste:
on run
tell application "Terminal"
activate
do script "
cd /Users/YOUR_USERNAME/ruinedFooocus
source venv/bin/activate
python launch.py --port 7865 --listen
# Wait for RuinedFooocus to start (max 30 seconds)
for i in {1..30}; do
if curl -s http://127.0.0.1:7865 >/dev/null; then
echo \"RuinedFooocus is ready\"
open http://127.0.0.1:7865
break
fi
sleep 1
done
"
end tell
end run
Save as an application (.app) for easy launching.
The text was updated successfully, but these errors were encountered:
Here's the complete installation guide for RuinedFooocus on macOS (M1/M2):
INSTALLATION
Install system dependencies first:
Create and navigate to the installation directory:
Clone the repository:
git clone https://github.com/runew0lf/RuinedFooocus.git .
Create and activate a virtual environment:
Create a Mac-compatible pip_modules.txt file (remove all existing content and replace with):
Install all required packages:
Install base requirements
Create a launch script (start_ruinedfooocus.sh):
NOTES:
Replace YOUR_USERNAME with your actual username in all paths
First launch will take time as it downloads required models
The web interface will open at http://127.0.0.1:7865/
Ignore warnings about gradio version
Ignore any warnings about playsound efficiency
Ensure you have enough disk space for models (~10GB recommended)
Have a working internet connection for the first run to download models
These instructions have been tested on macOS with M1/M2 chips.
OPTIONAL APPLESCRIPT:
If you want to create an AppleScript for easy launching, open Script Editor and paste:
Save as an application (.app) for easy launching.
The text was updated successfully, but these errors were encountered: