我的.bashrc中添加了以下几行:
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
终端中的以下行说明了问题:
cardamom@neptune ~ $ mkdir testDirectory
cardamom@neptune ~ $ cd testDirectory
cardamom@neptune ~/testDirectory $ pyenv versions
* system (set by /home/felix/.pyenv/version)
3.4.3
3.5.0
project1
miniconda2-latest
miniconda3-latest
miniconda3-latest/envs/project1
cardamom@neptune ~/testDirectory $ pyenv local miniconda3-latest
(miniconda3-latest) cardamom@neptune ~/testDirectory $ pyenv local miniconda2-latest
(miniconda2-latest) cardamom@neptune ~/testDirectory $ pyenv local 3.4.3
cardamom@neptune ~/testDirectory $ python --version
Python 3.4.3
cardamom@neptune ~/testDirectory $
有谁知道错误以及如何解决?
答案 0 :(得分:1)
因为miniconda3-latest
是一个虚拟环境,而3.4.3
只是一个不同的Python版本。
pyenv
,用于更改当前活动的Python版本,不会以任何方式更改命令行提示,但pyenv-virtualenv
插件does。
它没有任何问题,只是在这种情况下才能获得特殊待遇。