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
This is the first step towards supporting newer versions of pip in the backend. The major change is that instead of using pip internals, light-the-torch now actually wraps pip.
If you want to install this version of light-the-torch, use pip install --pre light-the-torch.
The precedence of the AnyBackend, i.e. a package that can run on any backend since it contains no compiled code, over the other backends lead to installing very old versions in case the library provided non-compiled binaries at first. #37 fixes this.
The version comparison to select the best installation candidate was based on string comparison, which leads to false results in case one part of the version crosses the single digit threshold. This was fixed in #38.
This versions adds support for installing any CUDA version that is supported by the nvidia driver rather than only the one that supplies nvcc. Shoutout to @fepegar for flagging and helping me fixing this!
For this release the CLI was rewritten (#16). Instead of one overloaded command, ltt now has the subcommands install, extract, and find. For details see the README. Furthermore, the minor Python API is now documented (#18).