Ubuntu arm 安装.net6.0+配置 .net环境变量

发布时间 2023-09-06 20:13:44作者: 94cool

wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
sudo chmod +x ./dotnet-install.sh
sudo ./dotnet-install.sh --channel 6.0


echo 'export DOTNET_ROOT=$HOME/.dotnet' >> ~/.bashrc
echo 'export PATH=$PATH:$HOME/.dotnet' >> ~/.bashrc
source ~/.bashrc

dotnet --version
dotnet --info

dotnet ***.dll