Install DCli
To get started with DCli you first need to install Dart and optionally the DCli tools.
There are three methods for installing Dart and the DCli tools.
If you only want to use the DCli library then you can add DCli to your pubspec.yaml as you would any other package.
dependencies:
dcli: 0.37.0
Check pub.dev for the latest version no.
Start by installing Dart as per:
If you want to use the DCli tools, including Shebang (#!) support you need to globally activate DCli.
Now activate the DCli tools:
dart pub global activate dcli
dcli install
This is still a work in progress but is intended to provide a three line script to install Dart and the DCli tools.
Linux
Windows
OSX
wget https://github.com/noojee/dcli/releases/download/latest.linux/dcli_install
chmod +x dcli_install
sudo ./dcli_install
curl https://github.com/bsutton/dcli/releases/download/latest.windows/dcli_install.exe
dcli_install.exe
Coming soon:
curl https://github.com/bsutton/dcli/releases/download/latest.osx/dcli_install
dcli_install.exe
You can use virtually any editor to create DCli scripts but we use and recommend Visual Studio Code (vscode) with the Dart-Code plugin.
Now install the vscode extension for Dart - Dart Code:
We use and recommend the following additional vscode extensions:
- Dart-Code.flutter
- dart-import
- pubspec-assist
- vscode-browser-preview
- bracket-pair-colorizer
- LogFileHighlighter
Last modified 10mo ago