Skip to content

Instantly share code, notes, and snippets.

@vbuterin2
Last active May 11, 2021 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vbuterin2/fce69eeb11b4e06bfbf743723484de92 to your computer and use it in GitHub Desktop.
Save vbuterin2/fce69eeb11b4e06bfbf743723484de92 to your computer and use it in GitHub Desktop.
Dart Installation on Ubuntu LTS
 sudo apt-get install -y apt-transport-https
 sudo sh -c 'wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -'
 sudo sh -c 'wget -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list'
 sudo apt-get -y update
 sudo apt-get install -y dart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment