DEV Community

Keita Onabuta
Keita Onabuta

Posted on

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

Top comments (0)