BrokePipeError in my fish

keonabut

Keita Onabuta

Posted on March 3, 2023

BrokePipeError in my fish
❯ Exception ignored in: <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'>                                    (base)
BrokenPipeError: [Errno 32] Broken pipe
Enter fullscreen mode Exit fullscreen mode

If you got error as above in your fish terminal when using Conda, just adding status is-interactive && into your config.fish will this problem.

# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
if test -f /Users/keonabut/miniconda3/bin/conda
  status is-interactive && eval /Users/keonabut/miniconda3/bin/conda "shell.fish" "hook" $argv | source
end
# <<< conda initialize <<<
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
keonabut
Keita Onabuta

Posted on March 3, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related