forked from mrq/tortoise-tts
pip-ifying things
This commit is contained in:
parent
efa43274bd
commit
76fce284e4
|
@ -12,8 +12,4 @@ torchaudio
|
||||||
threadpoolctl
|
threadpoolctl
|
||||||
appdirs
|
appdirs
|
||||||
numpy
|
numpy
|
||||||
numba
|
numba
|
||||||
gradio
|
|
||||||
music-tag
|
|
||||||
k-diffusion
|
|
||||||
voicefixer
|
|
4
requirements_legacy.txt
Executable file
4
requirements_legacy.txt
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
gradio
|
||||||
|
music-tag
|
||||||
|
k-diffusion
|
||||||
|
voicefixer
|
|
@ -3,5 +3,6 @@ call .\tortoise-venv\Scripts\activate.bat
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116
|
python -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116
|
||||||
python -m pip install -r ./requirements.txt
|
python -m pip install -r ./requirements.txt
|
||||||
|
python -m pip install -r ./requirements_legacy.txt
|
||||||
deactivate
|
deactivate
|
||||||
pause
|
pause
|
|
@ -4,4 +4,5 @@ python -m pip install --upgrade pip
|
||||||
# CUDA
|
# CUDA
|
||||||
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116
|
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116
|
||||||
python -m pip install -r ./requirements.txt
|
python -m pip install -r ./requirements.txt
|
||||||
|
python -m pip install -r ./requirements_legacy.txt
|
||||||
deactivate
|
deactivate
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
python -m venv tortoise-venv
|
python -m venv tortoise-venv
|
||||||
call .\tortoise-venv\Scripts\activate.bat
|
call .\tortoise-venv\Scripts\activate.bat
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install torch torchvision torchaudio torch-directml==0.1.13.1.dev230119
|
python -m pip install torch torchvision torchaudio torch-directml
|
||||||
python -m pip install -r ./requirements.txt
|
python -m pip install -r ./requirements.txt
|
||||||
|
python -m pip install -r ./requirements_legacy.txt
|
||||||
deactivate
|
deactivate
|
||||||
pause
|
pause
|
|
@ -4,4 +4,5 @@ python -m pip install --upgrade pip
|
||||||
# ROCM
|
# ROCM
|
||||||
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm5.1.1 # 5.2 does not work for me desu
|
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm5.1.1 # 5.2 does not work for me desu
|
||||||
python -m pip install -r ./requirements.txt
|
python -m pip install -r ./requirements.txt
|
||||||
|
python -m pip install -r ./requirements_legacy.txt
|
||||||
deactivate
|
deactivate
|
||||||
|
|
4
setup.py
Normal file → Executable file
4
setup.py
Normal file → Executable file
|
@ -6,13 +6,13 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="TorToiSe",
|
name="TorToiSe",
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
version="2.4.2",
|
version="2.4.3",
|
||||||
author="James Betker",
|
author="James Betker",
|
||||||
author_email="james@adamant.ai",
|
author_email="james@adamant.ai",
|
||||||
description="A high quality multi-voice text-to-speech library",
|
description="A high quality multi-voice text-to-speech library",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/neonbjb/tortoise-tts",
|
url="https://git.ecker.tech/mrq/tortoise-tts",
|
||||||
project_urls={},
|
project_urls={},
|
||||||
scripts=[
|
scripts=[
|
||||||
'scripts/tortoise_tts.py',
|
'scripts/tortoise_tts.py',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user