diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f70dba0..c4c81bb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to Stability Matrix will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html). +## v2.5.4 +### Fixed +- Fixed [#208](https://github.com/LykosAI/StabilityMatrix/issues/208) - error when installing xformers + ## v2.5.3 ### Added - Added French UI language option, thanks to eephyne for the translation diff --git a/StabilityMatrix.Core/Models/Packages/BasePackage.cs b/StabilityMatrix.Core/Models/Packages/BasePackage.cs index 2c224ad3..d9fd2289 100644 --- a/StabilityMatrix.Core/Models/Packages/BasePackage.cs +++ b/StabilityMatrix.Core/Models/Packages/BasePackage.cs @@ -178,7 +178,7 @@ public abstract class BasePackage await venvRunner .PipInstall(PyVenvRunner.TorchPipInstallArgsCuda, onConsoleOutput) .ConfigureAwait(false); - await venvRunner.PipInstall("xformers", onConsoleOutput).ConfigureAwait(false); + await venvRunner.PipInstall("xformers==0.0.20", onConsoleOutput).ConfigureAwait(false); } protected Task InstallDirectMlTorch(