赞
踩
windows11 专业版、显卡>=22GB。
wsl 是一项由微软开发的功能,允许在 Windows 操作系统上运行 Linux。
①在开始菜单中搜索 powershell、Windows Powershell 或 pwsh(pwsh 需要手动 安装),点击“以管理员身份运行”或“Run As Administrator”,输入命令:
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
②查看 wsl 版本
wsl -l -v *#*检 查 正 在 运 行 的 *Linux* 发 行 版
wsl --setdefault CentOS9-stream *#*将 *CentOS9-stream* 设 置 *wsl* 默 认 使 用 的 *Linux* 发 行 版 wsl --update *#* 以 防 万 一 更 新 *wsl*
wsl --set-version CentOS9-stream 2 *#*设 置 更 新 到 *CentOS9* 为 *WSL2*
wsl *#*进 入 到 *CentOS* 命 令 行
https://github.com/mishamosher/CentOS-WSL
echo -e “[boot]\nsystemd=true” | tee -a /etc/wsl.conf ps --no-headers -o comm 1
3.3、启用 nvidia-smi
cp /usr/lib/wsl/lib/nvidia-smi /usr/bin/nvidia-smi chmod ogu+x /usr/bin/nvidia-smi
搜索启用或关闭 Windows 功能,勾选 Hyper-V 功能并重启电脑
①打开虚拟交换机管理器
②新增虚拟交换机
① 新 建 全 局 配 置 文 件
cd ~ # 进 入 到 用 户 主 目 录
New-Item .wslconfig # 新 建 全 局 配 置 文 件
.\.wslconfig # 选 择 一 个 编 辑 器 编 辑 该 配 置 文 件
② 写 入 内 容
[wsl2]
networkingMode=bridged
vmSwitch=WSLBridge
dhcp=true # 禁 止 DHCP 动 态 分 配 IP 地 址
ipv6=true
#Limits VM memory to use no more than 4 GB, this can be set as whole numbers using GB or MB
#可 更 改
memory=32GB
#Sets the VM to use two virtual processors
#可 更 改
processors=8
ip addr *#*查 看 网 卡 信 息
ping baidu.com *#* 尝 试 连 接 到 百 度
centos 默认有 python 环境
wget https://repo.anaconda.com/archive/Anaconda3-2021.11-Linux-x86_64.sh
bash Anaconda3-2021.11-Linux-x86_64.sh
vi /etc/profile
PATH=$PATH:/data/anaconda3/bin export PATH
source /etc/profile
echo $PATH
conda activate # 进 入 conda 环 境 出 现 (base)则 说 明 安 装 成 功
conda deactivate # 退 出 conda 环 境
git lfs install
git clone https://www.modelscope.cn/ZhipuAI/chatglm3-6b.git
pip install protobuf 'transformers>=4.30.2' cpm\_kernels 'torch>=2.0' gradio mdtex2html sentencepiece accelerate
git clone https://github.com/hiyouga/LLaMA-Factory.git
conda create -n llm-fine-tune python=3.10
conda activate llm-fine-tune
cd LLaMA-Factory/
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
CUDA_VISIBLE_DEVICES=0 python src/train_web.py
注:如果出现内容则成功,不出现则需要检查路径是否正确
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。