J'ai installé Dart conformément aux instructions du site officiel ( https://www.dartlang.org/tools/debian.html ). Pour être plus précis:
$ sudo apt-get update
$ sudo apt-get install apt-transport-https
# Get the Google Linux package signing key.
$ sudo sh -c 'curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -'
# Set up the location of the stable repository.
$ sudo sh -c 'curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list'
$ sudo apt-get update
$ sudo apt-get install dart
L'installation a réussi, mais quelque temps plus tard, j'ai constaté qu'il n'y avait pas d'autres commandes connexes comme pub, dart2js.
pub: command not found
dart2js: command not found
Qu'est-ce qui ne va pas?
Système d'exploitation: Ubuntu 14.10