Bootstrap

[论文笔记] Megatron LM环境安装

CUDA12,python3.10!!

代码:GitHub - alibaba/Pai-Megatron-Patch: The official repo of Pai-Megatron-Patch for LLM & VLM large scale training developed by Alibaba Cloud.

安装ssh:

sudo apt update
sudo apt upgrade
sudo apt install openssh-server
1、用户名和邮箱
git config --global user.name "name"
git config --global user.email "email"
2、生成ssh key (ED25519)
ssh-keygen -t ed25519 -C "<自定义内容>"
3、复制第二步的ssh,到gitlab的“个人设置-ssh公钥”里。
4、创建/root/.ssh/config
HostName github.com
  Preferr
;