tenstorrent / tt-buda

Tenstorrent TT-BUDA Repository
Other
162 stars 21 forks source link

pip dependency problem. #11

Closed Dobob1022 closed 4 months ago

Dobob1022 commented 4 months ago

While Installing pybuda and tvm via .whl file, It have some issue to install the whl file.

currently using pip -> pip 24.0 python 3.8.10 on virtualenv

Here is the dependency Error list

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. pylocron 0.2.1 requires torch<2.0.0,>=1.9.1, but you have torch 2.1.0+cpu which is incompatible. textual 0.42.0 requires rich>=13.3.3, but you have rich 11.2.0 which is incompatible. tt-smi 2.0.1 requires rich==13.7.0, but you have rich 11.2.0 which is incompatible. tt-tools-common 1.0.0 requires requests==2.31.0, but you have requests 2.28.2 which is incompatible. tt-tools-common 1.0.0 requires rich==13.7.0, but you have rich 11.2.0 which is incompatible.

milank94 commented 4 months ago

@Dobob1022 pip will give out ERROR messages for dependency conflicts that are actually warnings.

After the process is complete, can you check the virtualenv to see if everything has been installed successfully?

A simple test could be to run the smoke test: https://github.com/tenstorrent/tt-buda-demos/blob/main/first_5_steps/1_install_tt_buda.md#smoke-test

If this fails. Can you downgrade the version of pip using the default that comes with python 3.8.10. It should be pip==20.0.2

Dobob1022 commented 4 months ago

Thanks. I tried to change pip version 24 to 20.0.2, It's works. but some warning appear on screen. But it's ignoreable.

The smoke test works!