For users running on a Mac using ZSH, our CLI install command might render the following error:
Password:
zsh: done curl -sSL [https://install.astronomer.io](https://install.astronomer.io/) |
zsh: suspended (tty input) sudo bash -s
Apple replaced bash with ZSH as the default shell as of macOS Catalina, and our CLI install command currently presents an incompatibility error with ZSH, sudo and the pipe syntax.
Fix
If you’re running macOS Catalina and beyond and are trying to install our CLI, do the following:
- Run
sudo -K
to reset/get back to un-authenticated - Run the following to install the CLI properly:
curl -sSL
https://install.astronomer.io
| sudo bash -s </dev/null