0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

text-generation-webuiをアップデートする

Last updated at Posted at 2023-08-11

condaを使いインストールしたtext-generation-webuiを、アップデートした時のメモになります。

text-generation-webuiのzip版のアップデートではないので、ご注意ください。

環境

項目 情報
OS Ubuntu 22.04 LTS
cuda cudaインストール済み
ユーザ textgen
conda環境名 textgen

その他

text-generation-webuiを下記手順でインストール。

アップデート手順

text-generation-webuiですが開発が活発です。
(使わさせていただいてる身としては、大変ありがたいことです。)

定期的にアップデートした方が、最新機能などを追うことができて便利かと思います。

また、text-generation-webuiが利用しているライブラリ(※)も定期的にアップデートされているので、忘れないようにライブラリの更新も行いましょう。
※ requirements.txtでライブラリは管理されている模様

アップデート

condaで管理しているtextgen環境をactivateし、text-generation-webuiがインストールされているディレクトリへ移動する

(base) textgen@localhost:~$ conda activate textgen
(textgen) textgen@localhost:~$ cd text-generation-webui/

git pullコマンドを使い、text-generation-webuiをアップデートする。

(textgen) textgen@localhost:~/text-generation-webui$ git pull
remote: Enumerating objects: 67, done.
remote: Counting objects: 100% (67/67), done.
remote: Compressing objects: 100% (28/28), done.
remote: Total 67 (delta 44), reused 59 (delta 39), pack-reused 0
Unpacking objects: 100% (67/67), 30.70 KiB | 2.05 MiB/s, done.
From https://github.com/oobabooga/text-generation-webui
   a3295dd..8dbaa20  main              -> origin/main
 * [new branch]      max_tokens_second -> origin/max_tokens_second
Updating a3295dd..8dbaa20
Fast-forward
 README.md                        |  3 ---

~~中略~~

 requirements.txt                 |  4 ++++
 10 files changed, 59 insertions(+), 119 deletions(-)

ライブラリの更新を行う

git pullにより、text-generation-webuiをアップデートした際に、requirements.txtの更新が行われる時があります。

requirements.txtの更新が行われた際は、ライブラリの更新が行われたということなので、下記pipコマンドを使いライブラリの更新を行いましょう。
requirements.txtの更新がなかった場合は、本手順は不要です。

(textgen) textgen@localhost:~/text-generation-webui$ pip install -r requirements.txt

お疲れさまでした。
以上がtext-generation-webuiのアップデート手順になります。

参考HP

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?