Dawson
Dawson

Reputation: 21

How to install openGauss on a Python 3.7 environment

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

Upvotes: 0

Views: 79

Answers (2)

Sarah
Sarah

Reputation: 23

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.

Upvotes: 0

bilibili_ok
bilibili_ok

Reputation: 26

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.

Upvotes: 0

Related Questions