Reputation: 21
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
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
Reputation: 26
Following this step
gspylib/common/CheckPythonVersion.py
fileif not pythonVersion = (3, 6):
to if not pythonVersion > = (3, 6):
Upvotes: 0