问题
I am trying to install pyenv
in my ubuntu system.
I am following the tutorial from here.
So, to install pyenv
I typed the below command from tutorial
curl https://pyenv.run | bash
As per the tutorial, I was expecting to see the below message (Please note that I tried by adding/removing the path from .bashrc file) but it doesn't work
WARNING: seems you still have not added 'pyenv' to the load path.
# Load pyenv automatically by adding
# the following to ~/.bashrc:
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
But I don't see the above message. Instead the pyenv
is installed successfully with below message
Cloning into '/home/abcd/.pyenv/plugins/pyenv-which-ext'... remote: Enumerating objects: 10, done. remote: Counting objects: 100% (10/10), done. remote: Compressing objects: 100% (6/6), done. remote: Total 10 (delta 1), reused 6 (delta 0), pack-reused 0 Unpacking objects: 100% (10/10), done.
What does the warning message
from tutorial indicate and why am I not seeing it?
来源:https://stackoverflow.com/questions/62527467/missing-messages-after-pyenv-installation