摘要: 参考 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:53 朝阳1 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 官网 https://github.com/RVC-Boss/GPT-SoVITS/blob/main/docs/cn/README.md 可以下载打包好的文件,也可自己安装 阅读全文
posted @ 2024-04-29 16:35 朝阳1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: hf-mirror.com的包如何下载 pip install -U huggingface_hub 设置环境变量以使用镜像站: export HF_ENDPOINT=https://hf-mirror.com 对于 Windows Powershell,使用: $env:HF_ENDPOINT = 阅读全文
posted @ 2024-04-29 14:58 朝阳1 阅读(2) 评论(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:58 朝阳1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 简单做个笔记 register package main import ( "os" "log" "time" "syscall" "context" "os/signal" "go.etcd.io/etcd/clientv3" ) //ServiceRegister 创建租约注册服务 type S 阅读全文
posted @ 2024-04-28 16:54 朝阳1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 安装goctl GO111MODULE=on GOPROXY=https://goproxy.cn/,direct go get -u github.com/tal-tech/go-zero/tools/goctl goctl kube deploy -name nginx -namespace t 阅读全文
posted @ 2024-04-28 16:51 朝阳1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 之前一直没管,默认会在c盘,越来越大 修改pip.ini 之前写过一篇关于pip.ini的文章 https://www.cnblogs.com/qcy-blog/p/17789058.html cache文件夹要存在 [global] cache-dir = D:\pip\cache 查看是否更改成 阅读全文
posted @ 2024-04-28 15:26 朝阳1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 方格音乐 http://fonger.top/ 阅读全文
posted @ 2024-04-28 15:05 朝阳1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 拉取镜像 docker pull dannicool/docker-wechatbot-webhook 创建我们的容器: docker run \ -d \ --name wxBotWebhook \ -p 3001:3001 \ -e RECVD_MSG_API=http://192.168.31 阅读全文
posted @ 2024-04-28 14:54 朝阳1 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 列出所有镜像 docker images docker rmi 镜像id 若报错的话加个-f docker rmi -f 镜像id 清理所有无用镜像:该命令会删除所有不再使用的镜像,释放系统空间。 docker image prune 清理所有无用镜像和容器:如果您还想一并清理不再使用的容器,可以使 阅读全文
posted @ 2024-04-28 14:26 朝阳1 阅读(3) 评论(0) 推荐(0) 编辑