openclaw基本命令
基本配置及命令配置官网说明 命令
openclaw安装插件
安装插件安装插件一般使用npm安装,如果安装失败,则检查网络 1234567891011┘kewen@DESKTOP-S0UMKGA:~/.openclaw$ npx -y @tencent-weixin/openclaw-weixin-cli@latest install[openclaw-weixin] 已找到本地安装的 openclaw[openclaw-weixin] 检测到 OpenClaw 版本: 2026.3.22[openclaw-weixin] 匹配兼容版本: 2.0.x (新宿主线) (dist-tag: latest)[openclaw-weixin] 正在安装插件 @tencent-weixin/openclaw-weixin@latest...[openclaw-weixin] 插件安装失败,请手动执行:fetch failed openclaw plugins install "@tencent-weixin/openclaw-weixin@latest" npm 设置源 npm config set registry...
安装openclaw
官网https://docs.openclaw.ai/zh-CN 安装前置需要的环境安装 git nodejs 根据不同的环境自己安装,ubuntu可以直接使用以下 1234#安装git apt install git# 安装nodejs 安装nodejs比较复杂,ubuntu自带的nodejs版本很低,需要安装新的源,见 ubuntu 安装nodejs 安装主程序123sudo curl -fsSL https://openclaw.ai/install.sh | bash -s -- --no-onboard# 或者npm安装npm install -g openclaw@latest 配置初始化快速配置 1openclaw onboard --install-daemon 建议配置 配置项 选择 I understand this is powerful and inherently risky. Continue? 选择 Yes Onboarding mode 选择 QuickStart Model/auth provider 选择...
docker安装mac os
环境使用docker+docker compose安装 构建 docker compose新建文件docker-compose.yml 12345678910111213141516171819202122232425262728293031323334services: macos: image: dockurr/macos container_name: macos environment: # CPU核心数(不得超出物理机总核心数) CPU_CORES: "4" # macOS版本: # 15 macOS 15 Sequoia # 14 macOS 14 Sonoma # 13 macOS 13 Ventura # 12 macOS 12 Monterey # 11 macOS 11 Big Sur VERSION: "12" #...
ubuntu 安装nodejs
说明在ubuntu的镜像中,nodejs的镜像是18.x,版本比较旧,如果想安装新的nodejs就需要先配置nodejs的源 下载安装镜像源12curl -fsSL https://deb.nodesource.com/setup_lts.x -o nodesource_setup.shsudo -E bash nodesource_setup.sh 正常安装nodejs1sudo apt install nodejs 这样安装出来应该是nodejs v24,npm v11 nodejs --version 和 npm --version 引用
SpringSecurity接入Saml2协议认证
pom依赖springboot版本采用2.3.2.RELEASE 1spring-boot.version=2.3.2.RELEASE 123456789101112131415<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> <version>${spring-boot.version}</version></dependency><dependency> <groupId>org.springframework.boot</groupId> ...
windows安装podman
windows安装Podman1234podman machine initpodman machine start #podman machine set...
ubuntu安装redis
安装ubundu默认安装的是redis7 1234sudo apt install redis-serversudo systemctl status redis-serversudo systemctl enable redis-server 配置sudo vim /etc/redis/redis.conf 可以修改端口配置 1bind 0.0.0.0 -::1
ubuntu安装docker
安装官方脚本安装12345678910# 1. 下载官方安装脚本并使用阿里云镜像源sudo curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun# 2. 启动 Docker 服务并设置开机自启sudo systemctl enable --now docker# 3. 验证安装是否成功sudo docker run hello-world# 链接:https://juejin.cn/post/7521998095049080895
