You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to contribute a pull request that addresses an installation error encountered when installing pybuda on Linux systems, caused by an incorrect installation order of the required wheel files.
Problem:
The previous installation instructions in 1_install_tt_buda.md specified the following order for installing wheel files:
pip install pybuda-.whl tvm-.whl torchvision-.whl
This order led to the following error on Linux (specifically tested on a Linux environment that installs pybuda for the first time):
ERROR: Could not find a version that satisfies the requirement torchvision==0.16.0+fbb4cc5 (from pybuda) (from versions: 0.1.6, 0.1.7, ..., 0.20.1)
ERROR: No matching distribution found for torchvision==0.16.0+fbb4cc5
Use code with caution.
This error occurs because pybuda depends on a specific version of torchvision provided by Tenstorrent. Installing pybuda before the Tenstorrent-provided torchvision wheel resulted in pip attempting to resolve the dependency from the standard PyPI repository, which does not contain the required version.
Solution:
This pull request corrects the installation order in 1_install_tt_buda.md to:
pip install torchvision-.whl pybuda-.whl tvm-.whl
Installing the Tenstorrent-provided torchvision wheel first ensures that the correct version is available when pybuda is installed, satisfying its dependency.
Testing:
After applying this change, the installation was successfully tested on a Linux environment. The installation now completes without errors.
Changes:
Modified tt-buda-demos/first_5_steps/1_install_tt_buda.md:
Changed the pip install command order from
pybuda-.whl tvm-.whl torchvision-.whl
to
torchvision-.whl pybuda-.whl tvm-.whl.
This simple change can resolve the installation issue and ensures a smooth installation experience for all users.
I made this change on my fork, but please feel free to change this in-place if it takes less time than reviewing my PR.
The text was updated successfully, but these errors were encountered:
I would like to contribute a pull request that addresses an installation error encountered when installing
pybuda
on Linux systems, caused by an incorrect installation order of the required wheel files.Problem:
The previous installation instructions in
1_install_tt_buda.md
specified the following order for installing wheel files:pip install pybuda-.whl tvm-.whl torchvision-.whl
This order led to the following error on Linux (specifically tested on a Linux environment that installs pybuda for the first time):
ERROR: Could not find a version that satisfies the requirement torchvision==0.16.0+fbb4cc5 (from pybuda) (from versions: 0.1.6, 0.1.7, ..., 0.20.1)
ERROR: No matching distribution found for torchvision==0.16.0+fbb4cc5
Use code with caution.
This error occurs because pybuda depends on a specific version of torchvision provided by Tenstorrent. Installing pybuda before the Tenstorrent-provided torchvision wheel resulted in pip attempting to resolve the dependency from the standard PyPI repository, which does not contain the required version.
Solution:
This pull request corrects the installation order in 1_install_tt_buda.md to:
pip install torchvision-.whl pybuda-.whl tvm-.whl
Installing the Tenstorrent-provided torchvision wheel first ensures that the correct version is available when pybuda is installed, satisfying its dependency.
Testing:
After applying this change, the installation was successfully tested on a Linux environment. The installation now completes without errors.
Changes:
Modified tt-buda-demos/first_5_steps/1_install_tt_buda.md:
Changed the pip install command order from
pybuda-.whl tvm-.whl torchvision-.whl
to
torchvision-.whl pybuda-.whl tvm-.whl.
This simple change can resolve the installation issue and ensures a smooth installation experience for all users.
I made this change on my fork, but please feel free to change this in-place if it takes less time than reviewing my PR.
The text was updated successfully, but these errors were encountered: