Mert Karabulut
06/03/2024, 3:11 PMAll airbyte-ci references removed from pyenv versions.
Cleanup of airbyte-ci install completed.
make: python: No such file or directory
make: *** [tools.airbyte-ci-binary.install] Error 1
kapa.ai
06/03/2024, 3:11 PMmake tools.airbyte-ci.install
command due to a missing Python executable. Here are a few steps you can take to resolve this issue: 1. Ensure Python is Installed and Available in Your PATH: Make sure that Python is installed on your system and that the python
command is available in your system's PATH. You can check this by running: sh python --version
If Python is not installed, you can download and install it from the [official Python website](https://www.python.org/downloads/). 2. Check Your Local Setup: According to a comment in [Issue #32523](https://github.com/airbytehq/airbyte/issues/32523), issues with the local setup (such as pyenv
and Python version) can cause problems. Ensure that you have the correct Python version and that airbyte-ci
is installed: sh pyenv versions pyenv global <your-python-version> pip install airbyte-ci
3. Run the Installation Command from the Correct Directory: Make sure you are running the make tools.airbyte-ci.install
command from the root directory of the Airbyte project. This is important because the Makefile and related scripts expect to be run from the root directory. 4. Use the Correct Makefile Target: The command you are using should be correct, but ensure that your Makefile is up to date and includes the tools.airbyte-ci.install
target. If you are still facing issues, you might want to check the Makefile for any discrepancies. If you have followed these steps and are still encountering issues, please provide more details about your environment and any additional error messages you are seeing. This will help in diagnosing the problem further.