Is it possible to specify which version of abctl t...
# ask-ai
c
Is it possible to specify which version of abctl to install?
u
Based on the provided knowledge sources, it appears that there isn't a direct way to specify which version of
abctl
to install during the installation process. However, there are a few relevant points to consider: 1. The default installation method using the curl command typically installs the latest version of
abctl
[Documentation > Using-airbyte > Getting-started > Quickstart > 1: Install
abctl
Part 1](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#1-install-abctl). 2. For Mac users using Homebrew, you can keep
abctl
up to date by running
brew upgrade abctl
, but this doesn't allow for version specification [Documentation > Using-airbyte > Getting-started > Quickstart > 1: Install
abctl
Part 1](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#1-install-abctl). 3. If you need a specific version, you can find a list of releases on the GitHub releases page [Documentation > Deploying-airbyte > Troubleshooting abctl > Additional Resources](https://docs.airbyte.com/deploying-airbyte/troubleshoot-deploy#additional-resources). You could potentially download a specific version from there and install it manually. 4. While
abctl
itself doesn't have a built-in way to specify versions, you can control the version of Airbyte that gets installed by using a
values.yaml
file. This file can be used to customize your Airbyte installation, including specifying the Airbyte Platform version [Documentation > Using-airbyte > Getting-started > Quickstart > Customizing your Installation with a Values file](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#customizing-your-installation-with-a-values-file). In summary, while there's no direct method to specify an
abctl
version during installation, you can manually download specific versions from the GitHub releases page or control the Airbyte version using a
values.yaml
file during installation.