diff --git a/Install.sh b/Install.sh index f26002a0..0bcc38af 100644 --- a/Install.sh +++ b/Install.sh @@ -24,7 +24,7 @@ sleep 2 clear echo "Creating virtual environment..." -python3 -m venv "$CURRENT_DIR/venv" +python -m venv "$CURRENT_DIR/venv" source "$CURRENT_DIR/venv/bin/activate" clear @@ -33,7 +33,7 @@ mkdir -p "$CURRENT_DIR/pip_cache" export PIP_CACHE_DIR="$CURRENT_DIR/pip_cache" echo "Upgrading pip, setuptools and wheel..." -python3 -m pip install --upgrade pip setuptools +python -m pip install --upgrade pip setuptools pip install wheel sleep 3 clear @@ -68,7 +68,7 @@ sleep 3 clear echo "Post-installing patches..." -python3 "$CURRENT_DIR/RequirementsFiles/post_install.py" +python "$CURRENT_DIR/RequirementsFiles/post_install.py" sleep 3 clear diff --git a/LaunchFile/app.py b/LaunchFile/app.py index 528ec23b..d303bcbf 100644 --- a/LaunchFile/app.py +++ b/LaunchFile/app.py @@ -1094,7 +1094,7 @@ def get_languages(): } -styles_filepath = "styles.csv" +styles_filepath = "inputs/image/styles.csv" def load_styles_from_csv(filepath): diff --git a/first_setup.py b/RequirementsFiles/first_setup.py similarity index 100% rename from first_setup.py rename to RequirementsFiles/first_setup.py diff --git a/Start.bat b/Start.bat index bd4402e5..91460184 100644 --- a/Start.bat +++ b/Start.bat @@ -5,7 +5,7 @@ set CURRENT_DIR=%~dp0 call "%CURRENT_DIR%venv\Scripts\activate.bat" -py first_setup.py +py "%CURRENT_DIR%RequirementsFiles\first_setup.py" echo Attempting to read Settings.json... if not exist Settings.json ( diff --git a/Start.sh b/Start.sh index 7b608768..57c51bc4 100644 --- a/Start.sh +++ b/Start.sh @@ -4,7 +4,7 @@ CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)" source "$CURRENT_DIR/venv/bin/activate" -python first_setup.py +python "$CURRENT_DIR/RequirementsFiles/first_setup.py" echo "Attempting to read Settings.json..." if [ ! -f Settings.json ]; then diff --git a/styles.csv b/inputs/image/styles.csv similarity index 65% rename from styles.csv rename to inputs/image/styles.csv index 4782a367..a7bd6c23 100644 --- a/styles.csv +++ b/inputs/image/styles.csv @@ -1,8 +1,8 @@ name,prompt,negative_prompt Cinematic,"cinematic lighting, depth of field, professional photography, movie still, dramatic atmosphere, color grading, high budget, 8k uhd, high production value","blurry, overexposed, underexposed, amateur, low quality, grainy, noisy, distorted, pixelated" -Fantasy,"magical atmosphere, ethereal lighting, mystical creatures, enchanted forest, glowing particles, floating elements, magical effects, fantasy landscape, otherworldly","modern elements, urban setting, mundane objects, realistic style, contemporary, mundane" -Fantastic,"surreal atmosphere, dreamlike quality, floating islands, impossible architecture, cosmic elements, prismatic colors, fantasy creatures, otherworldly scene","realistic, mundane, ordinary, simple composition, basic lighting" -Action,"dynamic pose, motion blur, intense lighting, action scene, explosive effects, dramatic angle, high energy, power pose, epic moment","static pose, boring composition, flat lighting, peaceful scene, calm atmosphere" +Fantasy,"mystical atmosphere, ethereal lighting, glowing particles, floating elements, magical effects, fantasy landscape, otherworldly","modern elements, urban setting, mundane objects, realistic style, contemporary, mundane" +Fantastic,"surreal atmosphere, dreamlike quality, impossible architecture, cosmic elements, prismatic colors, otherworldly scene","realistic, mundane, ordinary, simple composition, basic lighting" +Action,"dynamic and power pose, motion blur, intense lighting, action scene, explosive effects, dramatic angle, high energy, epic moment","static pose, boring composition, flat lighting, peaceful scene, calm atmosphere" Portrait,"professional studio lighting, bokeh background, sharp focus, perfect composition, detailed facial features, professional retouching, fashion photography","blurry, bad lighting, noisy background, overexposed, amateur look, unfocused" Anime,"anime art style, cel shading, vibrant colors, dramatic lighting, expressive eyes, detailed hair, clean lines, manga influence","photorealistic, western art style, 3d rendering, realistic textures, noisy" Vintage,"retro style, film grain, muted colors, nostalgic atmosphere, old photo effect, analog film, classic composition, aged texture","modern look, sharp digital, clean edges, vivid colors, contemporary style"