From 527d8fab3ee7a24ea110f9b6751a95a77fddf856 Mon Sep 17 00:00:00 2001 From: native-api Date: Sun, 15 Dec 2024 17:22:51 +0300 Subject: [PATCH] Adjust suggested shell startup code to support Pyenv with Pyenv-Win in WSL (#3132) There's a complaint that this results in duplicate PATH entries in nested shells, will deal with that separately --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 555eef42..6b51437a 100644 --- a/README.md +++ b/README.md @@ -190,7 +190,7 @@ See [Advanced configuration](#advanced-configuration) for details and more confi ```bash echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc - echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc + echo '[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc echo 'eval "$(pyenv init -)"' >> ~/.bashrc ``` 3. Then, if you have `~/.profile`, `~/.bash_profile` or `~/.bash_login`, add the commands there as well. @@ -199,7 +199,7 @@ See [Advanced configuration](#advanced-configuration) for details and more confi * to add to `~/.profile`: ``` bash echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.profile - echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.profile + echo '[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.profile echo 'eval "$(pyenv init -)"' >> ~/.profile ``` * to add to `~/.bash_profile`: