>>107711455
### AI ImageGen - Forge Classic Neo
[forge classic neo](https://github.com/Haoming02/sd-webui-forge-classic/tree/neo#installation)
- path: `~/Desktop/ai-slop/forge-classic-haoming/`
- models: `~/Desktop/ai-slop/forge-classic-haoming/models/`
```shell
# go to folder
cd ~/Desktop/ai-slop/forge-classic-haoming/
# grab stuff
git clone https://github.com/Haoming02/sd-webui-forge-classic sd-webui-forge-neo --branch neo
#... then drag contents back out to previous folder
# get pre-requisites
sudo dnf install wget git python3 gperftools-libs libglvnd-glx
# install python 3.11
sudo dnf install python3.11 python3.11-devel
# install uv to deal with python
sudo dnf install uv
# delete existing python venv (idk if pulled from github? wack)
rm -rf .venv venv
# set up new venv, using python 3.11
uv venv .venv --python 3.11 --seed
# sanity check
source .venv/bin/activate
python --version # should show 3.11.x
deactivate # optional
# run Forge with that uv env (it's detected by default by uv, no need to activate)
uv run python launch.py
# this will install (or launch) the thingy and automatically open http://127.0.0.1:7860/
```