上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 49 下一页
摘要: 官网 https://ffmpeg.org/download.html 这个是别人已经编译好的,不染源码还需要重新编译 解压到一个目录,添加到环境变量 阅读全文
posted @ 2024-05-05 17:11 朝阳1 阅读(37) 评论(0) 推荐(0)
摘要: 坑1 huggingface_hub连不上,可以用hf-mirror先把模型下载下来。具体可以参考我的上一篇文章 https://www.cnblogs.com/qcy-blog/p/18165717 下载 M4869/WavMark,在【xxx\Lib\site-packages\wavmark_ 阅读全文
posted @ 2024-05-05 17:06 朝阳1 阅读(275) 评论(0) 推荐(0)
摘要: git地址 https://github.com/myshell-ai/OpenVoice 安装 conda create -n openvoice python=3.9 conda activate openvoice git clone git@github.com:myshell-ai/Ope 阅读全文
posted @ 2024-05-05 15:25 朝阳1 阅读(327) 评论(0) 推荐(0)
摘要: 官方demo https://github.com/lyogavin/Anima/blob/main/air_llm/examples/run_all_types_of_models.ipynb 这里使用百川本地 from airllm import AirLLMLlama2,AutoModel M 阅读全文
posted @ 2024-04-30 17:01 朝阳1 阅读(366) 评论(0) 推荐(0)
摘要: 切换到 postgres 用户:默认情况下,以 postgres 用户身份登录可以获得数据库的完全访问权限: sudo su - postgres 登录到 PostgreSQL: psql 系统会提示您输入之前设置的 postgres 用户的密码。 登录后,您可以创建新的数据库和用户,或者执行其他数 阅读全文
posted @ 2024-04-30 13:47 朝阳1 阅读(56) 评论(0) 推荐(0)
摘要: 把ip加入黑名单 iptables -A INPUT -s 1.192.82.38 -j DROP 怎么回退这个命令? 但是要是误添加就很恶心了 要回退(即删除或撤销)使用 iptables 添加的特定规则,您需要知道该规则的序号。您可以使用带有 --line-number 选项的 iptables 阅读全文
posted @ 2024-04-30 10:11 朝阳1 阅读(55) 评论(0) 推荐(0)
摘要: 参考 https://www.cnblogs.com/scarecrow-blog/p/17875127.html 模型下载之前说过一次 https://www.cnblogs.com/qcy-blog/p/18165717 也可直接去官网,把所有文件都点一遍 from langchain impo 阅读全文
posted @ 2024-04-29 16:52 朝阳1 阅读(1480) 评论(0) 推荐(0)
摘要: 官网 https://github.com/RVC-Boss/GPT-SoVITS/blob/main/docs/cn/README.md 可以下载打包好的文件,也可自己安装 阅读全文
posted @ 2024-04-29 16:35 朝阳1 阅读(470) 评论(0) 推荐(0)
摘要: hf-mirror.com的包如何下载 pip install -U huggingface_hub 设置环境变量以使用镜像站: export HF_ENDPOINT=https://hf-mirror.com export HF_HOME = "usr/local/" 对于 Windows Pow 阅读全文
posted @ 2024-04-29 14:58 朝阳1 阅读(3825) 评论(0) 推荐(0)
摘要: package main import ( "fmt" "io" "os" "regexp" "strconv" "sync" "github.com/qianlnk/pgbar" ) /** * 需求: 1. 多协程下载文件 2.断点续连 **/ func main() { //获取要下载文件 D 阅读全文
posted @ 2024-04-28 16:57 朝阳1 阅读(124) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 49 下一页