- Run
curl --proto '=https' --tlsv1.2 -LsSf https://setup.atuin.sh | sh
- Run
source $HOME/.atuin/bin/env
- Restart terminal
.zshrc:#: command not found: atuin
Any idea what I might be missing?
curl --proto '=https' --tlsv1.2 -LsSf https://setup.atuin.sh | sh
source $HOME/.atuin/bin/env
.zshrc:#: command not found: atuin
Any idea what I might be missing?
Are you able to share your .zshrc?
I suspect the atuin plugin init is being sourced before the PATH for the binary is set
I have the same issue the bash on centos 9
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
for rc in ~/.bashrc.d/*; do
if [ -f "$rc" ]; then
. "$rc"
fi
done
fi
unset rc
[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh
eval "$(atuin init bash)"
~