diff --git a/asdfsdf b/asdfsdf index e8f58f01f574d8370e3547c6b2877d7a1ee51b62..989e32aa51c7ce3e8257a678310d606b6831c699 100644 --- a/asdfsdf +++ b/asdfsdf @@ -18,3 +18,23 @@ uid python3.12 -m venv huenv 创建虚拟环境 source huenv/bin/activate 激活虚拟环境 pip install -r +uid +配置github ssh + ssh-keygen + cat .ssh/id_rsa.pub +安装git + apt update + apt install git + git --version + git config --global user.name "huhu" + git config --global user.email "huhu@163.com" +安装python3.12 + add-apt-repository ppa:deadsnakes/ppa + apt update + apt install python3.12 + python3.12 --version +虚拟环境 + apt install python3.12-venv 安装 venv + python3.12 -m venv huenv 创建虚拟环境 + source huenv/bin/activate 激活虚拟环境 + pip install -r