added gradio>=4.44.0 in requirements.txt install.ps1 install.sh

This commit is contained in:
ROBERT-MCDOWELL
2024-10-22 23:07:52 +00:00
parent b8a18619f3
commit c655c9c4e0
7 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -146,7 +146,7 @@ if ((Check-CondaInstalled) -and (Check-Docker)) {
# Install required Python packages with pip, showing progress
Write-Host "Installing required Python packages..."
& conda run --prefix "$scriptDir\python_env" python.exe -m pip install --upgrade pip --progress-bar on -v
& conda run --prefix "$scriptDir\python_env" pip install pydub nltk beautifulsoup4 ebooklib translate coqui-tts tqdm mecab mecab-python3 unidic gradio docker --progress-bar on -v
& conda run --prefix "$scriptDir\python_env" pip install pydub nltk beautifulsoup4 ebooklib translate coqui-tts tqdm mecab mecab-python3 unidic gradio>=4.44.0 docker --progress-bar on -v
# Download unidic language model for MeCab with progress
Write-Host "Downloading unidic language model for MeCab..."

View File

@@ -89,7 +89,7 @@ if [[ -n "$WGET" && -n "$CONDA_VERSION" && -n "$DOCKER" ]]; then
conda activate $(pwd)/python_env && \
$DOCKER build -f DockerfileUtils -t utils . && \
pip install --upgrade pip && \
pip install pydub nltk beautifulsoup4 ebooklib translate coqui-tts tqdm mecab mecab-python3 unidic gradio docker && \
pip install pydub nltk beautifulsoup4 ebooklib translate coqui-tts tqdm mecab mecab-python3 unidic gradio>=4.44.0 docker && \
python -m unidic download && \
python -m spacy download en_core_web_sm && \
pip install -e . && \

View File

@@ -8,6 +8,6 @@ tqdm
mecab
mecab-python3
unidic
gradio
gradio>=4.44.0
docker