Posts

  • 安装 GOT-OCR 2.0

    Install install dependencies git clone https://github.com/Ucas-HaoranWei/GOT-OCR2.0.git cd GOT-OCR2.0/GOT-OCR-2.0-master conda create -n got-ocr python==3.11 conda activate got-ocr pip install -e . download checkpoints pip install -U huggingf...
  • 安装 GLM-4

    Install GLM-4: https://github.com/THUDM/GLM-4 git clone https://github.com/THUDM/GLM-4.git cd GLM-4/basic_demo/ conda create -n GLM-4 python==3.11 onda activate GLM-4 pip install -r requirements.txt download checkpoints pip install modelscope...
  • 安装 ComfyUI

    Install git clone https://github.com/comfyanonymous/ComfyUI.git cd ComfyUI conda create -n comfyui python==3.11 conda activate comfyui pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu124 pip install -...
  • 安装 Stable Diffusion web UI

    Install git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui cd stable-diffusion-webui python -m venv venv source venv/bin/activate​ ./webui.sh --xformers http://localhost:7860/ 安装中文扩展 打开 Extensions » Available 取消勾选 localization...
  • 创建自签名证书

    # 生成私钥(Private Key) # 私钥用于加密 openssl genrsa -out domain.test.key 2048 # 生成证书签名请求(CSR: Certificate signing request) # 证书签名请求用于对证书签名,CSR包含公钥和一些额外的信息,如:组织,国家 openssl req -new \ -subj "/C=CN/ST=Beijing/L=Beijing/O=exampleOrg/CN=domain.test" \ ...
  • 安装 RSSHub

    Run docker run -d --restart=unless-stopped --name rsshub \ --add-host=host.docker.internal:host-gateway \ -e "PROXY_URI=http://host.docker.internal:7890" \ --network frontend \ diygod/rsshub:chromium-bundled-2024-08-15 -p 1200:1200 安...
  • yolov5 快速入门

    https://github.com/ultralytics/yolov5 https://github.com/ultralytics/yolov5/blob/master/tutorial.ipynb https://docs.ultralytics.com/yolov5/quickstart_tutorial/ Install git clone https://github.com/ultralytics/yolov5.git cd yolov5 conda create ...
  • 安装 Syncthing 文件同步程序

    Syncthing 是一个连续的文件同步程序。它在两台或多台计算机之间同步文件。 Syncthing: https://github.com/syncthing/syncthing Install docker run --name syncthing -d --restart=unless-stopped \ -p 22000:22000/tcp -p 22000:22000/udp -p 21027:21027/udp \ -v /home/debian/data...
  • 安装 Calibre-Web

    https://github.com/janeczku/calibre-web https://github.com/linuxserver/docker-calibre-web Install docker run -d \ --name=calibre-web \ -e PUID="$(id -u)" \ -e PGID="$(id -g)" \ -e TZ=Etc/UTC \ -e DOCKER_MODS=linuxserver/mods:universal...
  • 安装 alist

    Install port: -p 5244:5244 \ docker run -d --name="alist" --restart=unless-stopped \ -e PUID="$(id -u)" \ -e PGID="$(id -g)" \ -v /home/debian/data/alist/data:/opt/alist/data \ -v /home/debian/data/alist/public:/media/Public \ -e PUID=...