Browse Source

Merge branch 'main' of https://github.com/ionite34/StabilityMatrix

pull/210/head v2.5.4
JT 1 year ago
parent
commit
7b1b063e85
  1. 4
      CHANGELOG.md
  2. 2
      StabilityMatrix.Core/Models/Packages/BasePackage.cs

4
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

2
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(

Loading…
Cancel
Save