成功安装新版本的python后,终端中只显示旧版本

问题描述 投票:0回答:1

我正在尝试安装 python 3.12,但即使安装成功后,终端也显示旧版本的 python。

我通过两种方式安装它:使用网站上的 python 安装程序和自制程序。 每次都显示安装成功。

我是这样运行的:

brew install [email protected]

我也尝试过这个(chatGPT 建议这样做):

pyenv install 3.12.0
pyenv global 3.12.0

但是这些似乎都不能正确安装 python 3.12。

当我运行这个时:

python --version

它显示了这个:

Python 3.11.5

我想要最新版本的 python。不知道是什么问题。

python macos installation
1个回答
0
投票

经过大量故障排除后,问题得到解决:

unset PYTHONHOME  

不知道为什么 - 但运行此命令后,终端现在显示最新版本的 python。

© www.soinside.com 2019 - 2024. All rights reserved.