From 0e930302d1d1eb1a98f3a9857f12d9126b58c592 Mon Sep 17 00:00:00 2001 From: CE Kim <60420458+cekim7@users.noreply.github.com> Date: Thu, 5 Dec 2024 19:30:47 -0800 Subject: [PATCH] Simple fix to prevent No matching distribution found for torchvision==0.16 error --- first_5_steps/1_install_tt_buda.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/first_5_steps/1_install_tt_buda.md b/first_5_steps/1_install_tt_buda.md index d6982ee5..06a8c4f1 100644 --- a/first_5_steps/1_install_tt_buda.md +++ b/first_5_steps/1_install_tt_buda.md @@ -142,7 +142,7 @@ source env/bin/activate ```bash pip install --upgrade pip==24.0 -pip install pybuda-.whl tvm-.whl torchvision-.whl +pip install torchvision-.whl pybuda-.whl tvm-.whl ``` The `pybuda-.whl` file contains the PyBuda library, the `tvm-.whl` file contains the latest TVM downloaded release, and the `torchvision-.whl` file bundles the torchvision library.