git
下载解压git二进制文件
https://github.com/desktop/dugite-native
编辑主目录下.zshrc文件添加
export PATH=$HOME/.local/bin/dugite/bin:$HOME/.local/bin/dugite/libexec/git-core:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
测试
git -v
git-remote-https
输入后会提示安全错误,到隐私与安全中开启信任并再次运行
NodeJS
安装nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
测试
nvm version输出为none代表安装成功
安装node
nvm install node
指定版本
nvm install 14.7.0 # or 16.3.0, 12.22.1, etc
Dotnet
安装Rider操作安装sdk后把主目录.dotnet下加入PATH
Python
安装PyCharm,同上,注意使用venv进行隔离
Java
安装sdkman后安装sdk
curl -s "https://get.sdkman.io" | bash
Go
参照官网
https://go.dev/doc/install
其他待完成