0

I'm using pyenv for managing python versions. I have installed oh-my-zsh. And I don't know why, but I think it isn't clear

~ pyenv versions                                                                                                                                               
  system
* 3.8.5 (set by /Users/kir/.pyenv/version)

If I try use Python

~ python -V                                                                                                                                                    
Python 2.7.16

I think it works different. Is it normal behaviour?

Kijewski
  • 25,517
  • 12
  • 101
  • 143
Ian
  • 43
  • 1
  • 7

1 Answers1

2

After googling, I found this issue
and I just add

eval "$(pyenv init -)"

to my .zshrc file in home directory and it worked!

Ian
  • 43
  • 1
  • 7