通用环境配置
安装软件
- 更换 apt 源 后执行
sudo apt update && sudo apt upgrade -y
- 安装 Miniconda 后执行
conda init
相关操作并重启终端 - 更换 conda 源
- 执行
conda config --set show_channel_urls yes
- 编辑
~/.condarc
- 执行
conda clean -i
- 执行
- 更换 pip 源
配置 Git
1
2
3
4
5
git config --global user.name "<Name>"
git config --global user.email "<Email>"
git config --global core.editor "vim"
git config --global credential.helper store
git config --global init.defaultBranch main
对于通过 VSCode 连接的服务器,配置:git config --global core.editor "code --wait"
配置代理
WSL2
在 ~/.bashrc
中添加:
1
2
3
4
5
6
7
8
# System proxy
export host_ip=$(cat /etc/resolv.conf | grep nameserver | awk '{print $2}')
export http_proxy="http://${host_ip}:10811"
export https_proxy="http://${host_ip}:10811"
# Git proxy
git config --global http.proxy ${http_proxy}
git config --global https.proxy ${https_proxy}
This post is licensed under CC BY 4.0 by the author.