参考官方:https://docs.fluttercn.cn/install/manual
参考:https://www.cnblogs.com/demodeom/p/18549653
sudo apt-get update -y && sudo apt-get upgrade -y
sudo apt-get install -y curl git unzip xz-utils zip libglu1-mesa
wget https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.7-stable.tar.xz
tar -xvf flutter_linux_3.38.7-stable.tar.xz
mv flutter /opt/
echo 'export PATH=$PATH:/opt/flutter/bin' >> ~/.bashrc
echo 'export PUB_HOSTED_URL=https://mirrors.tuna.tsinghua.edu.cn/dart-pub' >> ~/.bashrc
echo 'export FLUTTER_STORAGE_BASE_URL=https://mirrors.tuna.tsinghua.edu.cn/flutter' >> ~/.bashrc
source ~/.bashrc
flutter --version