Skip to content

Commit

Permalink
Merge pull request #327 from ionite34/fix-a1111-install
Browse files Browse the repository at this point in the history
Install httpx to fix a1111 install
  • Loading branch information
mohnjiles authored Nov 5, 2023
2 parents e7590bc + 3698d41 commit 39a81e1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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.7
### Fixed
- Fixed error `got an unexpected keyword argument 'socket_options'` on fresh installs of Automatic1111 Stable Diffusion WebUI
due to missing httpx dependency specification from gradio

## v2.5.6
### Added
- Added Russian UI language option, thanks to aolko for the translation
Expand Down
2 changes: 2 additions & 0 deletions StabilityMatrix.Core/Models/Packages/A3WebUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,8 @@ await InstallDirectMlTorch(venvRunner, progress, onConsoleOutput)
throw new ArgumentOutOfRangeException(nameof(torchVersion), torchVersion, null);
}

await venvRunner.PipInstall("httpx==0.24.1", onConsoleOutput);

// Install requirements file
progress?.Report(
new ProgressReport(-1f, "Installing Package Requirements", isIndeterminate: true)
Expand Down

0 comments on commit 39a81e1

Please sign in to comment.