user
09/25/2024, 12:26 PMabctl
version, you can use the following commands based on your operating system: For MacOS users: You can use the brew
command to update `abctl`: bash brew upgrade abctl
(Source: [Airbyte Documentation](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#1-install-abctl)) For Linux users: You need to download the latest release of abctl
from the [official GitHub page](https://github.com/airbytehq/abctl/releases/latest). After downloading, extract the archive, make the extracted executable accessible, and add abctl
to your PATH. Here are the commands for these steps: bash tar -xvzf {name-of-file-downloaded.linux-*.tar.gz} chmod +x abctl/abctl sudo mv abctl /usr/local/bin
(Source: [Airbyte Documentation](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#1-install-abctl)) For Windows users: You need to download the latest release of abctl
from the [official GitHub page](https://github.com/airbytehq/abctl/releases/latest). After downloading, extract the archive and add the executable to your PATH. You can do this through the "System Properties" window by searching for "environment variables" in the Start menu, clicking the Environment Variables
button, finding the path and clicking to Edit
, clicking New
and adding the path to the folder you extracted the abctl files to. (Source: [Airbyte Documentation](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#1-install-abctl)) After updating, you can verify the installation by running: bash abctl version
This command should print the installed version of the Airbyte Command Line Tool.