赞
踩
云服务器配置:32C256G GPU:v100
操作系统 :Ubuntu22.04
CUDA版本:12.2
sudo ubuntu-drivers autoinstall
anaconda下载链接Anaconda3-2024.02-1-Linux-x86_64.sh
选择正确的版本进行下载,本次选择Linux版本下载,得到Anaconda3-2024.02-1-Linux-x86_64.sh文件
#因为我这里创建好了/root/anaconda3的目录,所以加了-u参数
sh Anaconda3-2024.02-1-Linux-x86_64.sh -u
yes
yes
按照流程安装后,要重新进入命令行,才生效
# 配置conda环境
conda config --show channels
conda config --remove channels defaults
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
#配置conda 环境
conda create -n chatglm3-6b python=3.10
conda activate chatglm3-6b
conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia
# 下载ChatGLM3代码
git clone https://github.com/THUDM/ChatGLM3.git
# 下载git lfs
git lfs install
# 如果上述git 命令不支持请安装git-lfs
apt install git-lfs
# 下载模型文件,这一步比较久
# 由于国内无法访问hugging face 所以这里用model scope
git clone https://www.modelscope.cn/ZhipuAI/chatglm3-6b-128k.git
···
pip install -r requirement.txt
···
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。