第 3 節
Environment Setup
0瀏覽次數0訪問次數--跳出率--平均停留
Linux
Installation method
APT
sudo apt-get update && sudo apt-get install apt-transport-https
wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub \
| sudo gpg --dearmor -o /usr/share/keyrings/dart.gpg
sudo apt-get update && sudo apt-get install dart
DNF
sudo dnf install dnf-plugins-core
sudo dnf copr enable albertop/dart
sudo dnf install dart
Verify whether the installation was successful.
dart --version

Download VScode plugins


test
Create the first projectdemo01_helloworld.dart
void main()
{
print('Hello, World!');
}
Click to run
