tenstorrent / tt-smi

Tenstorrent console based hardware information program
Apache License 2.0
18 stars 3 forks source link

tt-smi is not running. #18

Closed changmooklim closed 3 months ago

changmooklim commented 3 months ago

I installed the Grayskull e75 on my computer and followed the procedure described in this link: "https://docs.tenstorrent.com/tenstorrent/add-in-boards-and-cooling-kits/grayskull-tm-e75-e150/software-setup".

After running tt-smi, I received the following message:

Traceback (most recent call last): File "/usr/local/bin/tt-smi", line 5, in from tt_smi import main File "/usr/local/lib/python3.8/dist-packages/tt_smi/init.py", line 7, in from .tt_smi import * File "/usr/local/lib/python3.8/dist-packages/tt_smi/tt_smi.py", line 33, in from tt_smi.tt_smi_backend import ( File "/usr/local/lib/python3.8/dist-packages/tt_smi/tt_smi_backend.py", line 31, in from tt_tools_common.utils_common.tools_utils import ( ImportError: cannot import name 'detect_chips_with_callback' from 'tt_tools_common.utils_common.tools_utils' (/usr/local/lib/python3.8/dist-packages/tt_tools_common/utils_common/tools_utils.py)

What should I check?

sbansalTT commented 3 months ago

Hey Changmooklim, could you try the following and that should fix your issue -

pip3 install --upgrade pip
pip3 uninstall tt-smi
pip3 install . --ignore-installed 

That should force the tt_tools_common library to upgrade to 1.4.1 which is needed for this function to work. Unfortunately you need a newer pip to solve this dependency

Please let me know if your issue persists

changmooklim commented 3 months ago

tt-smi is working well. thank you very much.