Missing messages after pyenv installation

懵懂的女人 提交于 2020-08-11 18:41:53

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!