[SWDEV-521116] Added 'more_itertools" error workaround

Signed-off-by: Justin Williams <Justin.Williams@amd.com>
This commit is contained in:
Justin Williams
2025-04-10 01:01:22 -05:00
committed by Arif, Maisam
vanhempi d81871ef16
commit af943ac05c
2 muutettua tiedostoa jossa 11 lisäystä ja 4 poistoa
+6
Näytä tiedosto
@@ -40,6 +40,12 @@ The following are required to install and use the AMD SMI library through its la
* Python 3.6.8+ (64-bit)
### Note: No module named more_itertools warning on Azure Linux 3
During the driver installation process on Azure Linux 3, you might encounter the `ModuleNotFoundError: No module named 'more_itertools'` warning. This warning is a result of the reintroduction of `python3-wheel` and `python3-setuptools` dependencies in the CMake of AMD SMI, which requires `more_itertools` to build these Python libraries. This issue will be fixed in a future ROCm release. As a workaround, use the following command before installation:
```
sudo python3 -m pip install more_itertools
```
### Go API prerequisites
* Go version 1.20 or greater
+5 -4
Näytä tiedosto
@@ -28,10 +28,11 @@ The following are required to install and use the AMD SMI library through its la
* Python version 3.6.8 or greater (64-bit)
* Modules:
* `python3-wheel`
* `python3-setuptools`
### Note: No module named more_itertools warning on Azure Linux 3
During the driver installation process on Azure Linux 3, you might encounter the `ModuleNotFoundError: No module named 'more_itertools'` warning. This warning is a result of the reintroduction of `python3-wheel` and `python3-setuptools` dependencies in the CMake of AMD SMI, which requires `more_itertools` to build these Python libraries. This issue will be fixed in a future ROCm release. As a workaround, use the following command before installation:
```
sudo python3 -m pip install more_itertools
```
### Go interface prerequisites