I'm trying to install `airbyte-ci` on my new mac s...
# ask-ai
b
I'm trying to install
airbyte-ci
on my new mac silicon but can't move past this:
Copy code
$ make tools.airbyte-ci.install                          
pipx not found, skipping uninstall of pipelines
Removed airbyte-ci
Removed airbyte-ci-internal
Removed airbyte-ci-dev
All 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
I already have a python alias that points to `python3`; have a symbolic link `/usr/local/bin/python -> /usr/local/bin/python3`; and checked
PATH
k
It looks like you're encountering an issue with installing
airbyte-ci
on your Mac with Apple Silicon. Based on the information available, here are a few steps you can take to troubleshoot and resolve this issue: 1. Ensure Python is Properly Installed and Accessible: - Verify that Python is correctly installed and accessible from your terminal. You can check this by running:
Copy code
sh      python --version      python3 --version
- Ensure that the symbolic link
/usr/local/bin/python
correctly points to your Python 3 installation. 2. Install
airbyte-ci
Using the Makefile
: - You can try installing
airbyte-ci
using the Makefile as suggested in the [GitHub Issue #32947](https://github.com/airbytehq/airbyte/issues/32947):
Copy code
sh      RELEASE_URL=<https://storage.googleapis.com/dev-airbyte-cloud-connector-metadata-service/airbyte-ci/releases> AIRBYTE_CI_VERSION=b6892cb make tools.airbyte-ci.install
3. Check for Dependencies: - Ensure that all necessary dependencies are installed. The error message indicates that
pipx
might not be found. You can install
pipx
using:
Copy code
sh      python3 -m pip install --user pipx      python3 -m pipx ensurepath
4. Verify
pyenv
Setup
: - If you are using
pyenv
to manage Python versions, make sure that
pyenv
is correctly set up and the required Python version is installed and set globally or locally in your project directory:
Copy code
sh      pyenv install 3.10.0      pyenv global 3.10.0
5. Run the Installation Command Again: - After ensuring the above steps, try running the installation command again:
Copy code
sh      make tools.airbyte-ci.install
If you continue to face issues, you might want to check the [Airbyte GitHub Issues](https://github.com/airbytehq/airbyte/issues) for any similar problems or open a new issue for further assistance. For more detailed instructions, you can refer to the relevant GitHub issues and forum posts: - [GitHub Issue #32947](https://github.com/airbytehq/airbyte/issues/32947) - [GitHub Issue #33066](https://github.com/airbytehq/airbyte/issues/33066) If these steps do not resolve your issue, please provide more details or error messages, and I can assist you further.