How to install openGauss on a Python 3.7 environment

74 Views Asked by At

when I install openGauss on a python3.7 environment, it reminds me the python version is not support, so how can I do?

2

There are 2 best solutions below

0
bilibili_ok On

Following this step

  1. open the gspylib/common/CheckPythonVersion.py file
  2. change if not pythonVersion = (3, 6): to if not pythonVersion > = (3, 6):
  3. type the "ESC" key to enter the instruction mode, execute: wq save and exit the modification.
0
Sarah On

If you are trying to install openGauss on a Python 3.7 environment, you will need to downgrade your Python version to a supported version. You can find instructions on how to downgrade your Python version on the OpenGauss website. Additionally, you may need to install additional packages or libraries to ensure that openGauss is compatible with your Python version.