diff options
| author | yum <yum.food.vr@gmail.com> | 2023-09-11 13:46:57 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2023-09-11 13:53:14 -0700 |
| commit | 0447f37fb744a1b350f6b92e4d140dbdb1c8d3ec (patch) | |
| tree | df57c1fd17bc8a9533713afb1663c17f6df8cf24 /GUI | |
| parent | d3c325c4c4dd954a75267b013f33f5f3c5d041bc (diff) | |
Pin huggingface_hub to 0.16.4v0.15.2
0.17.x are breaking faster_whisper's ability to download models.
Also:
* Start using frozen requirements.txt.
* Conditionally install torch & legacy whisper only when doing
mechanical optimization.
Diffstat (limited to 'GUI')
| -rw-r--r-- | GUI/GUI/GUI/Frame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GUI/GUI/GUI/Frame.cpp b/GUI/GUI/GUI/Frame.cpp index 273423e..0d30809 100644 --- a/GUI/GUI/GUI/Frame.cpp +++ b/GUI/GUI/GUI/Frame.cpp @@ -1789,7 +1789,7 @@ void Frame::EnsureVirtualEnv(bool block, bool force) "-u", // Unbuffered output
"-m pip",
"install",
- "-r Resources/Scripts/requirements.txt",
+ "-r Resources/Scripts/requirements_frozen.txt",
}, std::move(out_cb))) {
Log(transcribe_out_, "Failed to launch environment setup thread!\n");
return false;
|
