-
You said that these two commands are needed in the README.md:
My question is: Why not just:
and what's the purpose of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
The
eval
command is used to execute arguments like a shell command.eval "$(pyenv init -)
is used to execute pyenv at the start of each session inside your terminal.When you put the given command inside the
.zshrc
file, it applies to all interactive shells (such as the terminal inside a VSCode project). On the other hand,.zprofile
is used for non-interactive shells.