Skip to content

Commit a209144

Browse files
committed
change clipseg repo branch to avoid clipseg not found error
1 parent 0d13419 commit a209144

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

environments-and-requirements/environment-lin-aarch64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies:
3939
- test-tube>=0.7.5
4040
- git+https://github.com/openai/CLIP.git@main#egg=clip
4141
- git+https://github.com/Birch-san/k-diffusion.git@mps#egg=k_diffusion
42-
- git+https://github.com/invoke-ai/clipseg.git@models-rename#egg=clipseg
42+
- git+https://github.com/invoke-ai/clipseg.git@relaxed-python-requirement#egg=clipseg
4343
- -e .
4444
variables:
4545
PYTORCH_ENABLE_MPS_FALLBACK: 1

environments-and-requirements/environment-lin-cuda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ dependencies:
4141
- transformers==4.21.3
4242
- git+https://github.com/openai/CLIP.git@main#egg=clip
4343
- git+https://github.com/Birch-san/k-diffusion.git@mps#egg=k_diffusion
44-
- git+https://github.com/invoke-ai/clipseg.git@models-rename#egg=clipseg
44+
- git+https://github.com/invoke-ai/clipseg.git@relaxed-python-requirement#egg=clipseg
4545
- -e .

environments-and-requirements/environment-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ dependencies:
5858
- git+https://github.com/invoke-ai/k-diffusion.git@mps#egg=k_diffusion
5959
- git+https://github.com/invoke-ai/Real-ESRGAN.git#egg=realesrgan
6060
- git+https://github.com/invoke-ai/GFPGAN.git#egg=gfpgan
61-
- git+https://github.com/invoke-ai/clipseg.git@models-rename#egg=clipseg
61+
- git+https://github.com/invoke-ai/clipseg.git@relaxed-python-requirement#egg=clipseg
6262
- -e .
6363
variables:
6464
PYTORCH_ENABLE_MPS_FALLBACK: 1

environments-and-requirements/requirements-base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ torchmetrics
3333
transformers==4.21.*
3434
git+https://github.com/openai/CLIP.git@main#egg=clip
3535
git+https://github.com/Birch-san/k-diffusion.git@mps#egg=k-diffusion
36-
git+https://github.com/invoke-ai/clipseg.git@models-rename#egg=clipseg
36+
git+https://github.com/invoke-ai/clipseg.git@relaxed-python-requirement#egg=clipseg

installer/install.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set INSTALL_ENV_DIR=%cd%\installer_files\env
1919
@rem https://mamba.readthedocs.io/en/latest/installation.html
2020
set MICROMAMBA_DOWNLOAD_URL=https://micro.mamba.pm/api/micromamba/win-64/latest
2121
set RELEASE_URL=https://github.com/invoke-ai/InvokeAI
22-
set RELEASE_SOURCEBALL=/archive/refs/tags/2.1.3-rc4.tar.gz
22+
set RELEASE_SOURCEBALL=/archive/refs/tags/2.1.3-rc5.tar.gz
2323
set PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download
2424
set PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-x86_64-pc-windows-msvc-shared-install_only.tar.gz
2525

@@ -140,7 +140,7 @@ set err_msg=----- main pip install failed -----
140140
if %errorlevel% neq 0 goto err_exit
141141

142142
set err_msg=----- clipseg install failed -----
143-
.venv\Scripts\python -m pip install --no-cache-dir --no-warn-script-location -e git+https://github.com/invoke-ai/clipseg.git@models-rename#egg=clipseg
143+
.venv\Scripts\python -m pip install --no-cache-dir --no-warn-script-location -e git+https://github.com/invoke-ai/clipseg.git@relaxed-python-requirement#egg=clipseg
144144
if %errorlevel% neq 0 goto err_exit
145145

146146
set err_msg=----- InvokeAI setup failed -----

installer/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ fi
7474
INSTALL_ENV_DIR="$(pwd)/installer_files/env"
7575
MICROMAMBA_DOWNLOAD_URL="https://micro.mamba.pm/api/micromamba/${MAMBA_OS_NAME}-${MAMBA_ARCH}/latest"
7676
RELEASE_URL=https://github.com/invoke-ai/InvokeAI
77-
RELEASE_SOURCEBALL=/archive/refs/tags/2.1.3-rc4.tar.gz
77+
RELEASE_SOURCEBALL=/archive/refs/tags/2.1.3-rc5.tar.gz
7878
PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download
7979
if [ "$OS_NAME" == "darwin" ]; then
8080
PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-${PY_ARCH}-apple-darwin-install_only.tar.gz
@@ -184,7 +184,7 @@ _err_msg="\n----- main pip install failed -----\n"
184184
_err_exit $? _err_msg
185185

186186
_err_msg="\n----- clipseg install failed -----\n"
187-
.venv/bin/python3 -m pip install --no-cache-dir --no-warn-script-location -e git+https://github.com/invoke-ai/clipseg.git@models-rename#egg=clipseg
187+
.venv/bin/python3 -m pip install --no-cache-dir --no-warn-script-location -e git+https://github.com/invoke-ai/clipseg.git@relaxed-python-requirement#egg=clipseg
188188
_err_exit $? _err_msg
189189

190190
_err_msg="\n----- InvokeAI setup failed -----\n"

0 commit comments

Comments
 (0)