From 74bc08b7dc801987b77f4d3f4719f11792cf4a27 Mon Sep 17 00:00:00 2001 From: Honza Pokorny Date: Tue, 26 Sep 2017 08:31:48 -0300 Subject: [PATCH] Add a note about virtualenv-init for fish users --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index ebf138d..414ffc8 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,12 @@ From inside that directory you can: $ echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile ``` + **Fish shell note**: Add this to your `~/.config/fish/config.fish` + + ```sh + status --is-interactive; and source (pyenv virtualenv-init -|psub) + ``` + **Zsh note**: Modify your `~/.zshenv` file instead of `~/.bash_profile`. **Pyenv note**: You may also need to add `eval "$(pyenv init -)"` to your profile if you haven't done so already.