这似乎很基本,所以为什么会no such command
出现错误:
$ pyenv shell
pyenv: no such command `shell`
https://github.com/pyenv/pyenv/blob/master/COMMANDS.md#pyenv-shell
这似乎很基本,所以为什么会no such command
出现错误:
$ pyenv shell
pyenv: no such command `shell`
https://github.com/pyenv/pyenv/blob/master/COMMANDS.md#pyenv-shell
pyenv shell 将您的 python 本地(当前 shell 会话)切换到特定版本。您应该按照您已经安装的版本运行它。要检查您正在使用的当前 python 和安装的版本:
pyenv version #return the version you are using
pyenv versions # return all versions installed
然后,您可以为当前的 shell 会话设置 python 版本
pyenv shell 3.6.4 #3.6.4 is one of the installed python version