-
;
1.安装 git clone https://github.com/comfyanonymous/ComfyUI.git cd ComfyUI pip install -r requirements.txt python main.py 直接点击终端的链接跳转到ComfyUI界面 2.下载模型 modelscope download –model Qsy5420/v1-5-pruned-emaonly-fp16 –include v1-5-pruned-emaonly-fp16.safetensors –local_dir /mnt/workspace/ComfyUI/models/checkpoints/ 指定 100G空间很容易满,清空文件夹中的内容 rm -rf /mnt/workspace/ComfyUI/models/* 查看当前目录下的文件树及大小 du -ah –max-depth=1 wan2.2 https://www.modelscope.cn/models/Comfy-Org/Wan_2.2_ComfyUI_Repackaged/files diffusion_models modelscope download –model Comfy-Org/Wan_2.2_ComfyUI_Repackaged –inc…
- modelscope的Notebook中运行ComfyUI 2 天前
-
;
#安装ModelScope pip install modelscope #SDK模型下载 from modelscope import snapshot_download model_dir = snapshot_download(‘jonathanfu/longlegs’) print("下载完成!模型路径:") print(model_dir)
- ModelScope 4 天前
-
;
仓库:https://github.com/Comfy-Org/ComfyUI 官网:https://www.comfy.org/zh-cn/ wIndows桌面端,安装一直出错,必须要装到C盘,占用10G空间,C盘本来空间就吃紧,换成安装ComfyUI_windows_portable,直接下载压缩包。 https://docs.comfy.org/installation/comfyui_portable_windows 文件目录如下 ComfyUI_windows_portable ├── 📂ComfyUI // ComfyUI main program ├── 📂python_embeded // Independent Python environment ├── 📂update // Batch scripts for upgrading portable version ├── README_VERY_IMPORTANT.txt // ComfyUI Portable usage instructions in English ├── run_cpu.bat // Double click to start ComfyUI (CPU only) └── run_nvidia_gpu.bat // Double click to …
- ComfyUI安装 14 天前
-
;
1.进入wsl 2.安装 curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash source ~/.bashrc # reload shell (or: source ~/.zshrc) hermes # start chatting! 3.常用命令 # Start an interactive session (default) hermes hermes setup /help 仓库地址:https://github.com/nousresearch/hermes-agent 官方文档:https://hermes-agent.nousresearch.com/docs/user-guide/cli
- hermes agent 安装 17 天前
-
;
- Harness Engineering 2026年3月26日
-
;
1.创建agent openclaw agents add PM #产品经理-主 openclaw agents add FE #前端开发-子 openclaw agents add BE #后端开发-子 openclaw agents add QA #软件测试-子 2.检查配置文件openclaw.json agent:{ list:[ {id: "PM"}, {id: "FE"}, {id: "BE"}, {id: "QA"}, ] } 3.配置飞书多账户 accounts 的 key(如 pm)要与 Agent ID 对应 "channels": { "feishu": { "enabled": true, "accounts": { "pm": { "enabled": true, "name": "aiboss", "appId": "cli_xxxxxxxxxxxxx", "appSecret": "your_app_secr…
- openclaw配置多agent 2026年3月18日
-
;
自建应用获取 tenant_access_token https://open.feishu.cn/document/server-docs/authentication-management/access-token/tenant_access_token_internal 发送消息 https://open.feishu.cn/document/server-docs/im-v1/message/create?appId=cli_a92848b092389cb3 机器人接收到用户发送的消息后触发服务器回调 机器人应用发布后才可以生效,测试状态收不到 应用发布后如何删除 飞书管理后台–>停用–>飞书开放平台–>删除 思路:应用一旦发布控制权就到了管理员,所以就要先到管理后台操作
- 飞书消息机器人 2026年2月28日
-
;
无法提供摘要。这是一篇受保护的文章。
- 密码保护:OpenClaw安装 2026年2月23日
-
;
无法提供摘要。这是一篇受保护的文章。
- 密码保护:claude code 安装 2026年2月16日
-
;
1.三种api格式的区别 dashscope.aliyuncs.com/compatible-mode/v1 dashscope.aliyuncs.com/api/v2/apps/protocols/compatible-mode/v1/responses dashscope.aliyuncs.com/api/v1/services/aigc/text-generation/generation 阿里云百炼提供多种接口用于调用千问模型: OpenAI Chat Completion:社区生态成熟,迁移现有应用或集成第三方工具成本最低; OpenAI Responses:内置联网搜索、代码解释器和网页抓取工具,且无需手动维护对话历史; DashScope:阿里云百炼提供的原生接口,功能与参数最完整。 来源:https://bailian.console.aliyun.com/cn-beijing/?tab=api#/api/?type=model&url=2712576
- 阿里百炼 2026年1月24日
-
;
python下载window下所有版本 https://www.python.org/downloads/windows/ opencode 1.安装 python版本要大于3.9 pip install -U langchain # Requires Python 3.10+ # 验证 langchain 版本 pip show langchain pip install -U langchain-deepseek 包列表:https://docs.langchain.com/oss/python/integrations/providers/overview langchainJS https://docs.langchain.com/oss/javascript/langchain/overview npm install @langchain/core –save npm install @langchain/community –save @langchain/core:LangChain 核心功能(工具、提示词、代理核心)。 @langchain/community:社区维护的第三方模型集成(包含 DeepSeek 模型支持)。 dotenv:加载 .env 环境变量,保护 API 密钥不硬编码。 zod:工具入参校验,与上一…
- langchain 2026年1月8日
-
;
import torch x=torch.arange(12) x.shape x.numel() X = x.reshape(3,4) torch.zeros((2,3,4)) torch.ones((2,3,4)) import os
- 深度学习:01数据操作 2025年12月31日
-
;
教程来源:https://zh-v2.d2l.ai/ 一:windows安装conda Conda是一个开源包管理系统和环境管理系统,主要用于Python/R/Java/C++等语言的包管理和部署。 包管理:类似pip/npm,安装、更新、删除软件包 环境管理:创建隔离的Python环境,不同项目使用不同版本的包 下载安装包 https://docs.conda.io/en/latest/miniconda.html win7下旧的存档 https://repo.anaconda.com/archive/?use_xbridge3=true&loader_name=forest&need_sec_link=1&sec_link_scene=im&theme=light 选择:Anaconda3-2020.02-Windows-x86_64.exe 配置系统环境PATH E:\ProgramData\Anaconda3\condabin E:\ProgramData\Anaconda3\Scripts 常用命令 conda –version conda env list #查看所有 Conda 环境 conda activate d2l-zh #激活 conda deactivate #退出激活 con…
- 深度学习环境安装 2025年12月25日
