root@kria:~# xlnx-config --xmutil unloadapp
Traceback (most recent call last):
File "/usr/bin/xmutil", line 15, in
import distro
ModuleNotFoundError: No module named 'distro'
root@kria:~# apt install python3-distro
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
python3-distro is already the newest version (1.7.0-1).
python3-distro set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
root@kria:~# python3
Python 3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import distro
>>> exit()
root@kria:~# xlnx-config --xmutil unloadapp
Traceback (most recent call last):
File "/usr/bin/xmutil", line 15, in
import distro
ModuleNotFoundError: No module named 'distro'
root@kria:~# apt install python3-distro
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
python3-distro is already the newest version (1.7.0-1).
python3-distro set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
root@kria:~# python3
Python 3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import distro
>>> exit()
举报