Install doctl
following the directions for your package manager or operating system:
To install the latest version of doctl
using Homebrew on macOS, run:
To install the latest version of doctl
using Snap on Ubuntu or other supported operating systems, run:
For security purposes, Snaps run in complete isolation and need to be granted permission to interact with your system’s resources. Some doctl
commands require additional permissions:
doctl
’s integration with kubectl
requires the kube-config
personal-files interface. To enable it, run:doctl compute ssh
requires the core ssh-keys interface. To enable it, run:doctl registry login
requires the dot-docker
personal-files interface. To enable it, run:Visit the Releases page for the doctl
GitHub project and find the appropriate archive for your operating system and architecture. Download the archive from your browser or copy its URL and retrieve it to your home directory with wget
.
For example, to download the most recent version of doctl
for Linux with wget
, run:
Next, extract the binary. For example, to do so using tar
, run:
Finally, move the doctl
binary into your path by running:
Visit the Releases page for the doctl
GitHub project and find the appropriate archive for your operating system and architecture. Download the archive from your browser or copy its URL and retrieve using PowerShell.
For example, to download the most recent version of doctl
, run:
Next, extract the binary by running:
Finally, in a PowerShell terminal opened with Run as Administrator, move the doctl
binary into a dedicated directory and add it to your system’s path by running:
Create a DigitalOcean API token for your account with read and write access from the Applications & API page in the control panel. The token string is only displayed once, so save it in a safe place.
doctl
using the Ubuntu Snap package, you may need to first create the user configuration directory if it does not exist yet by running mkdir ~/.config
.Use the API token to grant doctl access to your DigitalOcean account. Pass in the token string when prompted by doctl auth init
, and give this authentication context a name.
Authentication contexts let you switch between multiple authenticated accounts. You can repeat steps 2 and 3 to add other DigitalOcean accounts, then list and switch between authentication contexts:
Now that doctl
is authorized to use your account, try some test commands.
To confirm that you have successfully authorized doctl
, review your account details by running:
If successful, the output looks like:
To confirm that you have successfully granted write access to doctl
,
create an Ubuntu 24.04 Droplet in the SFO2 region by running:
The output of that command includes an ID column with the new Droplet’s ID. For example:
Use that value to delete the Droplet by running:
When prompted, type y
to confirm that you would like to delete the Droplet.
To use doctl
with our serverless Functions product, you must first install a software extension, then use it to connect to the development namespace.
To install the support for serverless Functions, run the serverless install
subcommand:
This downloads and installs the extension, providing status updates along the way:
You are now ready to create a namespace and deploy your functions. See the Functions Quickstart to get started.