Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mohnjiles committed Oct 14, 2023
2 parents 4865a8c + f321c08 commit 7b1b063
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion StabilityMatrix.Core/Models/Packages/BasePackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ protected async Task InstallCudaTorch(
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(
Expand Down

0 comments on commit 7b1b063

Please sign in to comment.