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

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

posted @ 2023-09-06 20:05  94cool  阅读(177)  评论(0编辑  收藏  举报