1 Star 0 Fork 0

CTX/TTS

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 518 Bytes
一键复制 编辑 原始数据 按行查看 历史
Julian Weber 提交于 2023-05-08 16:38 +08:00 . rm pip cache (#2600)
ARG BASE=nvidia/cuda:11.8.0-base-ubuntu22.04
FROM ${BASE}
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y --no-install-recommends gcc g++ make python3 python3-dev python3-pip python3-venv python3-wheel espeak-ng libsndfile1-dev && rm -rf /var/lib/apt/lists/*
RUN pip3 install llvmlite --ignore-installed
WORKDIR /root
COPY . /root
RUN pip3 install torch torchaudio --extra-index-url https://download.pytorch.org/whl/cu118
RUN rm -rf /root/.cache/pip
RUN make install
ENTRYPOINT ["tts"]
CMD ["--help"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yashrio/TTS.git
git@gitee.com:yashrio/TTS.git
yashrio
TTS
TTS
dev

搜索帮助