Quickstart
Install the Dagger SDK
The next step is to install the Dagger SDK for your preferred language. Select from the options below.
- Go
- Node.js
- Python
note
The Dagger Go SDK requires Go 1.20 or later.
Create a new Go module and install the Dagger Go SDK using the commands below:
go mod init main
go get dagger.io/dagger
note
The Dagger Node.js SDK requires Node.js 16.x or later.
Install the Dagger Node.js SDK using npm
:
npm install @dagger.io/dagger --save-dev
You can also install it using yarn
if you prefer:
yarn add @dagger.io/dagger --dev
note
The Dagger Python SDK requires Python 3.10 or later. Using a virtual environment is recommended.
Install the Dagger Python SDK using pip
:
pip install dagger-io
You can also install via Conda, from the conda-forge channel:
conda install dagger-io