❯ Exception ignored in: <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'> (base)
BrokenPipeError: [Errno 32] Broken pipe
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 <<<
Top comments (0)