|
You said that these two commands are needed in the README.md:
My question is: Why not just: and what's the purpose of |
Answered by
hitblast
Jun 29, 2022
Replies: 1 comment
|
0 replies
Answer selected by
nyngwang
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
evalcommand 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
.zshrcfile, it applies to all interactive shells (such as the terminal inside a VSCode project). On the other hand,.zprofileis used for non-interactive shells.