its saying bash: ./run-ab-platform.sh: No such fil...
# ask-ai
h
its saying bash: ./run-ab-platform.sh: No such file or directory while i installing the repo
k
Based on the information provided in the knowledge sources, it appears that the
run-ab-platform.sh
script you're trying to use is deprecated and no longer available in recent versions of Airbyte. This explains why you're encountering the "No such file or directory" error. Instead of using
run-ab-platform.sh
, you should follow the current recommended method for deploying Airbyte locally. Here's what you should do: 1. Make sure you have Docker Engine and the Docker Compose plugin installed on your workstation. 2. Clone the Airbyte repository and navigate to the Airbyte directory:
Copy code
bash git clone --depth=1 <https://github.com/airbytehq/airbyte.git> cd airbyte
3. Start Airbyte by running:
Copy code
bash docker compose up
This method is described in the [Deploying Airbyte with Docker Compose](https://docs.airbyte.com/deploying-airbyte/docker-compose) documentation. If you encounter any issues with this approach, please provide more details about your specific setup and any error messages you receive.