Hi, I’m using Vitis AI 3.0 with Python 3.7.12.
The requirements.txt file specifies numpy>=1.22.2, but NumPy 1.22+ requires Python 3.8 or higher.
As a result, I get a version compatibility error when installing the requirements.
If I change the line to numpy>=1.21.6,<1.22, the installation works fine.
My question is: will this cause any issues or compatibility problems in the future with Vitis AI 3.0?
Hi, I’m using
Vitis AI 3.0withPython 3.7.12.The requirements.txt file specifies
numpy>=1.22.2, but NumPy 1.22+ requires Python 3.8 or higher.As a result, I get a version compatibility error when installing the requirements.
If I change the line to
numpy>=1.21.6,<1.22, the installation works fine.My question is: will this cause any issues or compatibility problems in the future with Vitis AI 3.0?