
【openGauss】在 openEuler(ARM 架构)上安装 openGauss
(单机版)
一、系统版本介绍
当前案例中的 openGauss 安装,底层操作系统为 openEuler-20.03-LTS 版本,当前
openGauss 对 Python 版本兼容性最好的是 Python 3.6 版本与 Python 3.7 版本,该实验
使用的 openEuler 版本自带 Python 3.7.4,不需要再自行安装
二、修改系统配置
1.更改 python 默认版本(默认是 2.x,更改为 3.x)
先使用以下命令查看当前系统默认 Python 版本与系统中的 Python3 版本,python -V 查
看的就是默认 Python,如果不是 3.x 版本,需要将默认 Python 更改为 Python3.x 的版本
python -V
python3 -V
执行以下命令将默认 Python 版本更改为 Python3.x 版本
mv /usr/bin/python /usr/bin/python.bak
ln -s /usr/bin/python3 /usr/bin/python
文档被以下合辑收录
评论