Verifying the Installation

You can use commands,

$ dart

and

$ dart --version

to verify if dart is successfully installed in your system.

Note: There is another way to install dart from the source, for that you can check this link. But it’s a long process as you’ll need to install many dependencies before compiling the source code. So, I’ll suggest one of the above two ways instead.


How to Install Dart on Linux?

This article will cover the topic of how you can install Dart SDK on a Linux system. Before we dive into installation let’s first take a small overview of Dart, its applications, and system requirements to install Dart in a Linux system. At the time of writing this article, the latest stable release version was 2.14.3.

Similar Reads

What is Dart?

A quick search on google will give you that,...

Before you install:

As of Flutter 1.21, the Flutter SDK includes the full Dart SDK. So if you have Flutter installed, you might not need to explicitly download the Dart SDK. Consider downloading the Dart SDK if any of the following are true:...

System requirements for Linux:

Supported versions: Debian stable and Ubuntu LTS under standard support. Supported architectures: x64, ia32, arm, arm64....

Linux Installation:

If you’re using Debian/Ubuntu on AMD64 (64-bit Intel), you can choose one of the following options, both of which can update the SDK automatically when new versions are released....

Verifying the Installation:

You can use commands,...