本地部署MaxKB

docker run -d --name=maxkb -p 5000:8080 -v ~/.maxkb:/var/lib/postgresql/data 1panel/maxkb # 用户名: admin # 密码: MaxKB@123.. 参考:https://github.com/1Panel-dev/MaxKB

指令微调llama3

一、清洗PDF(把PDF中的文字搞下来) import PyPDF2 import re def clean_extracted_text(text): """Clean and preprocess extracted text.""" # Remove chapter titles and sections text = re...

FastGpt本地部署

一、需要先下载两个文件 mkdir fastgpt cd fastgpt curl -O https://raw.githubusercontent.com/labring/FastGPT/main/files/deploy/fastgpt/docker-compose.yml curl -O https://raw.githubusercontent.com/...

Docker 安装openwebui

需要配合Ollama用,以下是通过GPU运行的命令 docker run -d -p 3000:8080 --gpus all --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always g...

docker清理全部容器日志

一、清理 Docker 容器的日志可以帮助释放磁盘空间并保持系统的整洁。你可以通过以下步骤清理所有容器的日志: 停止所有容器:首先,停止所有正在运行的 Docker 容器。你可以使用以下命令停止所有容器: ...

docker部署项目,/var/lib/docker/overlay2目录满了如何清理?

长时间运行docker磁盘空间满了多半是日志造成的,重点是清理日志。 1、进入docker映射的目录,创建docker_logs_clean.sh touch docker_logs_clean.sh 2、赋予读写权限 chmod +777 docker_logs_clean...

新安装的ide创建项目找不到setting文件

1、进入setting.xml的目录,创建一个setting.xml <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreement...

Facefusion安装和运行

https://docs.facefusion.io/installation 进入环境,cmd进入目录后启动环境 venv\Scripts\activate python run.py

关于insightface安装失败的解决方案

ERROR: Could not build wheels for insightface, which is required to install pyproject.toml-based projects, ERROR: Failed building wheel for insightface 解决方案:去vs官网下载c++构建工具(https:...

ComfyUI的初级教程

一、下载ComfyUI https://gitcode.com/comfyanonymous/comfyui https://github.com/comfyanonymous/ComfyUI 二、如果绘画的画需要先下载一个主模型 先下载一个CHECKPOINT类型的模型 可以通过这两...