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)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay