0

这似乎很基本,所以为什么会no such command出现错误:

$ pyenv shell
pyenv: no such command `shell`

https://github.com/pyenv/pyenv/blob/master/COMMANDS.md#pyenv-shell

4

1 回答 1

0

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
于 2018-03-01T12:13:56.960 回答