xylogs / tp

0 stars 0 forks source link

部署Stable Diffusion玩转AI绘画 #22

Closed xylogs closed 1 year ago

xylogs commented 1 year ago

Stable Diffusion 是一个 Python 命令行程序,我们直接使用需要对它的命令和参数有详尽的了解,有一定学习成本。好在,有一个 Stable Diffusion WebUI 的开源项目,可以直接将 Stable Diffusion 的操作通过网页透出,让我们轻松通过 Web 页面就能使用 Stable Diffusion 生成图片。所以,我们选择安装和使用 Stable Diffusion WebUI 来完成实验。

安装 Stable Diffusion WebUI

Stable Diffusion WebUI的安装与运行需要使用到一些工具软件,我们需要先通过Yum安装它们。

执行如下命令,安装基础工具。

sudo yum install -y git conda mesa-libGL

Conda是一个优秀的跨平台、跨语言包管理工具。同时,它的环境隔离功能也能很好的帮助我们屏蔽服务器间基础设施的不同,为我们提供一个干净、统一的程序运行环境。

依次执行如下命令,在Bash中初始化Conda,同时创建并激活名为aigc的虚拟环境。

sudo bash -c "conda init bash" && bash
conda create -y -n aigc python=3.10.6
conda activate aigc

💡注意:之后的操作都将基于aigc这个虚拟环境,如果你切换了Terminal或者不小心退出了环境,可以再次执行conda activate aigc命令回到aigc虚拟环境中。

3.1 执行如下命令,从Github上获取最新的Stable Diffusion WebUI代码。

git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git

💡说明:由于Github访问存在不稳定性,如果从上述地址clone失败,可以使用我们在Gitee上为大家准备的镜像项目,采用如下命令:

git clone https://gitee.com/developer-aliyun-com/stable-diffusion-webui.git

3.2 项目下载完成后,我们将Web Terminal的操作目录设置为项目所在目录。

cd stable-diffusion-webui

Stable Diffusion的运行还需要许多依赖包,执行如下命令,把它们都安装到Conda提供的虚拟环境中。

conda install -y pytorch torchvision torchaudio cpuonly -c pytorch
pip3 install opencv-python-headless gfpgan open-clip-torch xformers pyngrok clip-anytorch
pip3 install -r requirements_versions.txt

当一切准备就绪,执行如下命令,启动Stable Diffusion WebUI。

python launch.py --listen --lowvram --no-half --skip-torch-cuda-test

💡说明:在启动时,Stable Diffusion WebUI会根据需要下载一些必要模型数据,另外,加载模型也需要花费一些时间,所以我们现在要做的就是耐心等待。当Terminal 中显示出 Running on local URL: http://0.0.0.0:7860 字样,就表示程序已经启动并对外提供服务了。

xylogs commented 1 year ago

部署环境:

登录Token:m55ravqo0c 地区ID:cn-shanghai 区域:华东2(上海) 实例 ID:i-uf69qx2t0dhnq9rxy7mf 主机地址:101.133.146.105 端口号:22 实例名称:developer_lab_Instance 公网IP:101.133.146.105 私网IP:172.16.148.14 OS用户名:root CPU:4 内存: 8 G 系统名称:Alibaba Cloud Linux 3.2104 LTS 64位 快速启动版 系统发行版本名称:Aliyun

xylogs commented 1 year ago

操作日志:

[root@iZuf69qx2t0dhnq9rxy7mfZ ~]# sudo yum install -y git conda mesa-libGL
Last metadata expiration check: 0:12:32 ago on Thu 26 Oct 2023 01:47:09 PM CST.
Package git-2.31.1-3.1.al8.x86_64 is already installed.
Dependencies resolved.
==================================================================================================================
 Package                             Arch        Version                               Repository            Size
==================================================================================================================
Installing:
 conda                               noarch      4.10.3-1.el8                          epel                  19 k
 mesa-libGL                          x86_64      22.3.0-2.1.al8                        alinux3-updates      186 k
Upgrading:
 git                                 x86_64      2.39.3-1.1.al8                        alinux3-updates      104 k
 git-core                            x86_64      2.39.3-1.1.al8                        alinux3-updates       11 M
 git-core-doc                        noarch      2.39.3-1.1.al8                        alinux3-updates      3.0 M
 perl-Git                            noarch      2.39.3-1.1.al8                        alinux3-updates       79 k
Installing dependencies:
 libX11                              x86_64      1.7.0-7.al8                           alinux3-updates      616 k
 libX11-common                       noarch      1.7.0-7.al8                           alinux3-updates      160 k
 libX11-xcb                          x86_64      1.7.0-7.al8                           alinux3-updates       16 k
 libXau                              x86_64      1.0.9-8.al8                           alinux3-updates       38 k
 libXext                             x86_64      1.3.4-8.al8                           alinux3-updates       46 k
 libXfixes                           x86_64      5.0.3-7.2.al8                         alinux3-os            25 k
 libXxf86vm                          x86_64      1.1.4-9.2.al8                         alinux3-os            19 k
 libdrm                              x86_64      2.4.114-1.al8                         alinux3-updates      166 k
 libglvnd                            x86_64      1:1.3.4-1.0.1.al8                     alinux3-updates      120 k
 libglvnd-glx                        x86_64      1:1.3.4-1.0.1.al8                     alinux3-updates      140 k
 libpciaccess                        x86_64      0.14-1.2.al8                          alinux3-os            33 k
 libxcb                              x86_64      1.13.1-1.3.al8                        alinux3-os           230 k
 libxshmfence                        x86_64      1.3-2.2.al8                           alinux3-os            13 k
 mesa-libglapi                       x86_64      22.3.0-2.1.al8                        alinux3-updates       67 k
 picosat-libs                        x86_64      965-17.el8                            epel                  71 k
 python3-conda                       noarch      4.10.3-1.el8                          epel                 1.0 M
 python3-conda-package-handling      x86_64      1.7.3-2.el8                           epel                  60 k
 python3-cpuinfo                     noarch      5.0.0-1.el8                           epel                  46 k
 python3-cytoolz                     x86_64      0.11.0-1.el8                          epel                 319 k
 python3-distro                      noarch      1.4.0-2.1.module+al8+10+4ba10e20      alinux3-module        37 k
 python3-frozendict                  noarch      1.2-13.el8                            epel                  13 k
 python3-pycosat                     x86_64      0.6.3-12.el8                          epel                  28 k
 python3-ruamel-yaml                 x86_64      0.17.21-1.el8                         epel                 209 k
 python3-ruamel-yaml-clib            x86_64      0.2.8-1.el8                           epel                 141 k
 python3-toolz                       noarch      0.10.0-3.el8                          epel                 124 k
 python3-tqdm                        noarch      4.50.2-1.el8                          epel                 126 k

Transaction Summary
==================================================================================================================
Install  28 Packages
Upgrade   4 Packages

Total download size: 18 M
Downloading Packages:
(1/32): libXxf86vm-1.1.4-9.2.al8.x86_64.rpm                                       1.0 MB/s |  19 kB     00:00    
(2/32): libpciaccess-0.14-1.2.al8.x86_64.rpm                                      1.5 MB/s |  33 kB     00:00    
(3/32): libxshmfence-1.3-2.2.al8.x86_64.rpm                                       2.2 MB/s |  13 kB     00:00    
(4/32): libXfixes-5.0.3-7.2.al8.x86_64.rpm                                        828 kB/s |  25 kB     00:00    
(5/32): libX11-common-1.7.0-7.al8.noarch.rpm                                       14 MB/s | 160 kB     00:00    
(6/32): libX11-1.7.0-7.al8.x86_64.rpm                                              21 MB/s | 616 kB     00:00    
(7/32): libX11-xcb-1.7.0-7.al8.x86_64.rpm                                         910 kB/s |  16 kB     00:00    
(8/32): libxcb-1.13.1-1.3.al8.x86_64.rpm                                          5.1 MB/s | 230 kB     00:00    
(9/32): libXau-1.0.9-8.al8.x86_64.rpm                                             4.4 MB/s |  38 kB     00:00    
(10/32): libXext-1.3.4-8.al8.x86_64.rpm                                           5.7 MB/s |  46 kB     00:00    
(11/32): libdrm-2.4.114-1.al8.x86_64.rpm                                           17 MB/s | 166 kB     00:00    
(12/32): libglvnd-glx-1.3.4-1.0.1.al8.x86_64.rpm                                   15 MB/s | 140 kB     00:00    
(13/32): mesa-libGL-22.3.0-2.1.al8.x86_64.rpm                                      20 MB/s | 186 kB     00:00    
(14/32): libglvnd-1.3.4-1.0.1.al8.x86_64.rpm                                      5.7 MB/s | 120 kB     00:00    
(15/32): mesa-libglapi-22.3.0-2.1.al8.x86_64.rpm                                  2.4 MB/s |  67 kB     00:00    
(16/32): python3-distro-1.4.0-2.1.module+al8+10+4ba10e20.noarch.rpm               1.0 MB/s |  37 kB     00:00    
(17/32): picosat-libs-965-17.el8.x86_64.rpm                                       1.0 MB/s |  71 kB     00:00    
(18/32): conda-4.10.3-1.el8.noarch.rpm                                            185 kB/s |  19 kB     00:00    
(19/32): python3-conda-package-handling-1.7.3-2.el8.x86_64.rpm                    2.2 MB/s |  60 kB     00:00    
(20/32): python3-conda-4.10.3-1.el8.noarch.rpm                                    9.8 MB/s | 1.0 MB     00:00    
(21/32): python3-cpuinfo-5.0.0-1.el8.noarch.rpm                                   890 kB/s |  46 kB     00:00    
(22/32): python3-cytoolz-0.11.0-1.el8.x86_64.rpm                                  4.9 MB/s | 319 kB     00:00    
(23/32): python3-pycosat-0.6.3-12.el8.x86_64.rpm                                  1.3 MB/s |  28 kB     00:00    
(24/32): python3-frozendict-1.2-13.el8.noarch.rpm                                 279 kB/s |  13 kB     00:00    
(25/32): python3-ruamel-yaml-clib-0.2.8-1.el8.x86_64.rpm                          5.3 MB/s | 141 kB     00:00    
(26/32): python3-ruamel-yaml-0.17.21-1.el8.x86_64.rpm                             5.9 MB/s | 209 kB     00:00    
(27/32): python3-toolz-0.10.0-3.el8.noarch.rpm                                    3.3 MB/s | 124 kB     00:00    
(28/32): git-2.39.3-1.1.al8.x86_64.rpm                                             10 MB/s | 104 kB     00:00    
(29/32): python3-tqdm-4.50.2-1.el8.noarch.rpm                                     5.7 MB/s | 126 kB     00:00    
(30/32): perl-Git-2.39.3-1.1.al8.noarch.rpm                                       4.4 MB/s |  79 kB     00:00    
(31/32): git-core-doc-2.39.3-1.1.al8.noarch.rpm                                    43 MB/s | 3.0 MB     00:00    
(32/32): git-core-2.39.3-1.1.al8.x86_64.rpm                                        62 MB/s |  11 MB     00:00    
------------------------------------------------------------------------------------------------------------------
Total                                                                              37 MB/s |  18 MB     00:00     
warning: /var/cache/dnf/epel-8be3f840c94ea025/packages/conda-4.10.3-1.el8.noarch.rpm: Header V4 RSA/SHA256 Signature, key ID 2f86d6a1: NOKEY
Extra Packages for Enterprise Linux 8 - x86_64                                    1.6 MB/s | 1.6 kB     00:00    
Importing GPG key 0x2F86D6A1:
 Userid     : "Fedora EPEL (8) <epel@fedoraproject.org>"
 Fingerprint: 94E2 79EB 8D8F 25B2 1810 ADF1 21EA 45AB 2F86 D6A1
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                          1/1 
  Installing       : python3-ruamel-yaml-clib-0.2.8-1.el8.x86_64                                             1/36 
  Installing       : python3-ruamel-yaml-0.17.21-1.el8.x86_64                                                2/36 
  Upgrading        : git-core-2.39.3-1.1.al8.x86_64                                                          3/36 
  Installing       : python3-tqdm-4.50.2-1.el8.noarch                                                        4/36 
  Installing       : python3-conda-package-handling-1.7.3-2.el8.x86_64                                       5/36 
  Upgrading        : git-core-doc-2.39.3-1.1.al8.noarch                                                      6/36 
  Upgrading        : perl-Git-2.39.3-1.1.al8.noarch                                                          7/36 
  Upgrading        : git-2.39.3-1.1.al8.x86_64                                                               8/36 
  Installing       : python3-toolz-0.10.0-3.el8.noarch                                                       9/36 
  Installing       : python3-cytoolz-0.11.0-1.el8.x86_64                                                    10/36 
  Installing       : python3-frozendict-1.2-13.el8.noarch                                                   11/36 
  Installing       : python3-cpuinfo-5.0.0-1.el8.noarch                                                     12/36 
  Installing       : picosat-libs-965-17.el8.x86_64                                                         13/36 
  Installing       : python3-pycosat-0.6.3-12.el8.x86_64                                                    14/36 
  Installing       : python3-distro-1.4.0-2.1.module+al8+10+4ba10e20.noarch                                 15/36 
  Installing       : python3-conda-4.10.3-1.el8.noarch                                                      16/36 
  Installing       : mesa-libglapi-22.3.0-2.1.al8.x86_64                                                    17/36 
  Running scriptlet: mesa-libglapi-22.3.0-2.1.al8.x86_64                                                    17/36 
  Installing       : libglvnd-1:1.3.4-1.0.1.al8.x86_64                                                      18/36 
  Installing       : libXau-1.0.9-8.al8.x86_64                                                              19/36 
  Installing       : libxcb-1.13.1-1.3.al8.x86_64                                                           20/36 
  Installing       : libX11-xcb-1.7.0-7.al8.x86_64                                                          21/36 
  Installing       : libX11-common-1.7.0-7.al8.noarch                                                       22/36 
  Installing       : libX11-1.7.0-7.al8.x86_64                                                              23/36 
  Installing       : libXext-1.3.4-8.al8.x86_64                                                             24/36 
  Installing       : libXxf86vm-1.1.4-9.2.al8.x86_64                                                        25/36 
  Installing       : libXfixes-5.0.3-7.2.al8.x86_64                                                         26/36 
  Installing       : libxshmfence-1.3-2.2.al8.x86_64                                                        27/36 
  Installing       : libpciaccess-0.14-1.2.al8.x86_64                                                       28/36 
  Installing       : libdrm-2.4.114-1.al8.x86_64                                                            29/36 
  Installing       : libglvnd-glx-1:1.3.4-1.0.1.al8.x86_64                                                  30/36 
  Installing       : mesa-libGL-22.3.0-2.1.al8.x86_64                                                       31/36 
  Installing       : conda-4.10.3-1.el8.noarch                                                              32/36 
  Cleanup          : git-2.31.1-3.1.al8.x86_64                                                              33/36 
  Cleanup          : git-core-doc-2.31.1-3.1.al8.noarch                                                     34/36 
  Cleanup          : perl-Git-2.31.1-3.1.al8.noarch                                                         35/36 
  Cleanup          : git-core-2.31.1-3.1.al8.x86_64                                                         36/36 
  Running scriptlet: git-core-2.31.1-3.1.al8.x86_64                                                         36/36 
  Verifying        : libXfixes-5.0.3-7.2.al8.x86_64                                                          1/36 
  Verifying        : libXxf86vm-1.1.4-9.2.al8.x86_64                                                         2/36 
  Verifying        : libpciaccess-0.14-1.2.al8.x86_64                                                        3/36 
  Verifying        : libxcb-1.13.1-1.3.al8.x86_64                                                            4/36 
  Verifying        : libxshmfence-1.3-2.2.al8.x86_64                                                         5/36 
  Verifying        : libX11-1.7.0-7.al8.x86_64                                                               6/36 
  Verifying        : libX11-common-1.7.0-7.al8.noarch                                                        7/36 
  Verifying        : libX11-xcb-1.7.0-7.al8.x86_64                                                           8/36 
  Verifying        : libXau-1.0.9-8.al8.x86_64                                                               9/36 
  Verifying        : libXext-1.3.4-8.al8.x86_64                                                             10/36 
  Verifying        : libdrm-2.4.114-1.al8.x86_64                                                            11/36 
  Verifying        : libglvnd-1:1.3.4-1.0.1.al8.x86_64                                                      12/36 
  Verifying        : libglvnd-glx-1:1.3.4-1.0.1.al8.x86_64                                                  13/36 
  Verifying        : mesa-libGL-22.3.0-2.1.al8.x86_64                                                       14/36 
  Verifying        : mesa-libglapi-22.3.0-2.1.al8.x86_64                                                    15/36 
  Verifying        : python3-distro-1.4.0-2.1.module+al8+10+4ba10e20.noarch                                 16/36 
  Verifying        : conda-4.10.3-1.el8.noarch                                                              17/36 
  Verifying        : picosat-libs-965-17.el8.x86_64                                                         18/36 
  Verifying        : python3-conda-4.10.3-1.el8.noarch                                                      19/36 
  Verifying        : python3-conda-package-handling-1.7.3-2.el8.x86_64                                      20/36 
  Verifying        : python3-cpuinfo-5.0.0-1.el8.noarch                                                     21/36 
  Verifying        : python3-cytoolz-0.11.0-1.el8.x86_64                                                    22/36 
  Verifying        : python3-frozendict-1.2-13.el8.noarch                                                   23/36 
  Verifying        : python3-pycosat-0.6.3-12.el8.x86_64                                                    24/36 
  Verifying        : python3-ruamel-yaml-0.17.21-1.el8.x86_64                                               25/36 
  Verifying        : python3-ruamel-yaml-clib-0.2.8-1.el8.x86_64                                            26/36 
  Verifying        : python3-toolz-0.10.0-3.el8.noarch                                                      27/36 
  Verifying        : python3-tqdm-4.50.2-1.el8.noarch                                                       28/36 
  Verifying        : git-2.39.3-1.1.al8.x86_64                                                              29/36 
  Verifying        : git-2.31.1-3.1.al8.x86_64                                                              30/36 
  Verifying        : git-core-2.39.3-1.1.al8.x86_64                                                         31/36 
  Verifying        : git-core-2.31.1-3.1.al8.x86_64                                                         32/36 
  Verifying        : git-core-doc-2.39.3-1.1.al8.noarch                                                     33/36 
  Verifying        : git-core-doc-2.31.1-3.1.al8.noarch                                                     34/36 
  Verifying        : perl-Git-2.39.3-1.1.al8.noarch                                                         35/36 
  Verifying        : perl-Git-2.31.1-3.1.al8.noarch                                                         36/36 

Upgraded:
  git-2.39.3-1.1.al8.x86_64           git-core-2.39.3-1.1.al8.x86_64      git-core-doc-2.39.3-1.1.al8.noarch     
  perl-Git-2.39.3-1.1.al8.noarch     
Installed:
  conda-4.10.3-1.el8.noarch                             libX11-1.7.0-7.al8.x86_64                                 
  libX11-common-1.7.0-7.al8.noarch                      libX11-xcb-1.7.0-7.al8.x86_64                             
  libXau-1.0.9-8.al8.x86_64                             libXext-1.3.4-8.al8.x86_64                                
  libXfixes-5.0.3-7.2.al8.x86_64                        libXxf86vm-1.1.4-9.2.al8.x86_64                           
  libdrm-2.4.114-1.al8.x86_64                           libglvnd-1:1.3.4-1.0.1.al8.x86_64                         
  libglvnd-glx-1:1.3.4-1.0.1.al8.x86_64                 libpciaccess-0.14-1.2.al8.x86_64                          
  libxcb-1.13.1-1.3.al8.x86_64                          libxshmfence-1.3-2.2.al8.x86_64                           
  mesa-libGL-22.3.0-2.1.al8.x86_64                      mesa-libglapi-22.3.0-2.1.al8.x86_64                       
  picosat-libs-965-17.el8.x86_64                        python3-conda-4.10.3-1.el8.noarch                         
  python3-conda-package-handling-1.7.3-2.el8.x86_64     python3-cpuinfo-5.0.0-1.el8.noarch                        
  python3-cytoolz-0.11.0-1.el8.x86_64                   python3-distro-1.4.0-2.1.module+al8+10+4ba10e20.noarch    
  python3-frozendict-1.2-13.el8.noarch                  python3-pycosat-0.6.3-12.el8.x86_64                       
  python3-ruamel-yaml-0.17.21-1.el8.x86_64              python3-ruamel-yaml-clib-0.2.8-1.el8.x86_64               
  python3-toolz-0.10.0-3.el8.noarch                     python3-tqdm-4.50.2-1.el8.noarch                          

Complete!
[root@iZuf69qx2t0dhnq9rxy7mfZ ~]# sudo bash -c "conda init bash" && bash
modified      /usr/condabin/conda
modified      /usr/bin/conda
modified      /usr/bin/conda-env
modified      /usr/bin/activate
modified      /usr/bin/deactivate
modified      /usr/etc/profile.d/conda.sh
modified      /usr/etc/fish/conf.d/conda.fish
modified      /usr/shell/condabin/Conda.psm1
modified      /usr/shell/condabin/conda-hook.ps1
modified      /usr/lib/python3.6/site-packages/xontrib/conda.xsh
modified      /usr/etc/profile.d/conda.csh
modified      /root/.bashrc

==> For changes to take effect, close and re-open your current shell. <==
(base) [root@iZuf69qx2t0dhnq9rxy7mfZ ~]# conda create -y -n aigc python=3.10.6
Collecting package metadata (current_repodata.json): done
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: done

## Package Plan ##

  environment location: /root/.conda/envs/aigc

  added / updated specs:
    - python=3.10.6

The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    _libgcc_mutex-0.1          |             main           3 KB
    _openmp_mutex-5.1          |            1_gnu          21 KB
    bzip2-1.0.8                |       h7b6447c_0          78 KB
    ca-certificates-2023.08.22 |       h06a4308_0         123 KB
    ld_impl_linux-64-2.38      |       h1181459_1         654 KB
    libffi-3.3                 |       he6710b0_2          50 KB
    libgcc-ng-11.2.0           |       h1234567_1         5.3 MB
    libgomp-11.2.0             |       h1234567_1         474 KB
    libstdcxx-ng-11.2.0        |       h1234567_1         4.7 MB
    libuuid-1.41.5             |       h5eee18b_0          27 KB
    ncurses-6.4                |       h6a678d5_0         914 KB
    openssl-1.1.1w             |       h7f8727e_0         3.7 MB
    pip-23.3                   |  py310h06a4308_0         2.7 MB
    python-3.10.6              |       haa1d7c7_1        21.9 MB
    readline-8.2               |       h5eee18b_0         357 KB
    setuptools-68.0.0          |  py310h06a4308_0         936 KB
    sqlite-3.41.2              |       h5eee18b_0         1.2 MB
    tk-8.6.12                  |       h1ccaba5_0         3.0 MB
    tzdata-2023c               |       h04d1e81_0         116 KB
    wheel-0.41.2               |  py310h06a4308_0         109 KB
    xz-5.4.2                   |       h5eee18b_0         642 KB
    zlib-1.2.13                |       h5eee18b_0         103 KB
    ------------------------------------------------------------
                                           Total:        47.1 MB

The following NEW packages will be INSTALLED:

  _libgcc_mutex      pkgs/main/linux-64::_libgcc_mutex-0.1-main
  _openmp_mutex      pkgs/main/linux-64::_openmp_mutex-5.1-1_gnu
  bzip2              pkgs/main/linux-64::bzip2-1.0.8-h7b6447c_0
  ca-certificates    pkgs/main/linux-64::ca-certificates-2023.08.22-h06a4308_0
  ld_impl_linux-64   pkgs/main/linux-64::ld_impl_linux-64-2.38-h1181459_1
  libffi             pkgs/main/linux-64::libffi-3.3-he6710b0_2
  libgcc-ng          pkgs/main/linux-64::libgcc-ng-11.2.0-h1234567_1
  libgomp            pkgs/main/linux-64::libgomp-11.2.0-h1234567_1
  libstdcxx-ng       pkgs/main/linux-64::libstdcxx-ng-11.2.0-h1234567_1
  libuuid            pkgs/main/linux-64::libuuid-1.41.5-h5eee18b_0
  ncurses            pkgs/main/linux-64::ncurses-6.4-h6a678d5_0
  openssl            pkgs/main/linux-64::openssl-1.1.1w-h7f8727e_0
  pip                pkgs/main/linux-64::pip-23.3-py310h06a4308_0
  python             pkgs/main/linux-64::python-3.10.6-haa1d7c7_1
  readline           pkgs/main/linux-64::readline-8.2-h5eee18b_0
  setuptools         pkgs/main/linux-64::setuptools-68.0.0-py310h06a4308_0
  sqlite             pkgs/main/linux-64::sqlite-3.41.2-h5eee18b_0
  tk                 pkgs/main/linux-64::tk-8.6.12-h1ccaba5_0
  tzdata             pkgs/main/noarch::tzdata-2023c-h04d1e81_0
  wheel              pkgs/main/linux-64::wheel-0.41.2-py310h06a4308_0
  xz                 pkgs/main/linux-64::xz-5.4.2-h5eee18b_0
  zlib               pkgs/main/linux-64::zlib-1.2.13-h5eee18b_0

Downloading and Extracting Packages
libstdcxx-ng-11.2.0  | 4.7 MB    | ####################################################################### | 100% 
libgcc-ng-11.2.0     | 5.3 MB    | ####################################################################### | 100% 
libffi-3.3           | 50 KB     | ####################################################################### | 100% 
xz-5.4.2             | 642 KB    | ####################################################################### | 100% 
setuptools-68.0.0    | 936 KB    | ####################################################################### | 100% 
libuuid-1.41.5       | 27 KB     | ####################################################################### | 100% 
_libgcc_mutex-0.1    | 3 KB      | ####################################################################### | 100% 
bzip2-1.0.8          | 78 KB     | ####################################################################### | 100% 
openssl-1.1.1w       | 3.7 MB    | ####################################################################### | 100% 
ncurses-6.4          | 914 KB    | ####################################################################### | 100% 
readline-8.2         | 357 KB    | ####################################################################### | 100% 
_openmp_mutex-5.1    | 21 KB     | ####################################################################### | 100% 
tzdata-2023c         | 116 KB    | ####################################################################### | 100% 
zlib-1.2.13          | 103 KB    | ####################################################################### | 100% 
tk-8.6.12            | 3.0 MB    | ####################################################################### | 100% 
libgomp-11.2.0       | 474 KB    | ####################################################################### | 100% 
pip-23.3             | 2.7 MB    | ####################################################################### | 100% 
sqlite-3.41.2        | 1.2 MB    | ####################################################################### | 100% 
ld_impl_linux-64-2.3 | 654 KB    | ####################################################################### | 100% 
ca-certificates-2023 | 123 KB    | ####################################################################### | 100% 
python-3.10.6        | 21.9 MB   | ####################################################################### | 100% 
wheel-0.41.2         | 109 KB    | ####################################################################### | 100% 
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use
#
#     $ conda activate aigc
#
# To deactivate an active environment, use
#
#     $ conda deactivate
(base) [root@iZuf69qx2t0dhnq9rxy7mfZ ~]# conda activate aigc
(aigc) [root@iZuf69qx2t0dhnq9rxy7mfZ ~]# git clone https://gitee.com/developer-aliyun-com/stable-diffusion-webui.git
Cloning into 'stable-diffusion-webui'...
remote: Enumerating objects: 16434, done.
remote: Counting objects: 100% (16434/16434), done.
remote: Compressing objects: 100% (4885/4885), done.
remote: Total 16434 (delta 11495), reused 16434 (delta 11495), pack-reused 0
Receiving objects: 100% (16434/16434), 27.50 MiB | 4.99 MiB/s, done.
Resolving deltas: 100% (11495/11495), done.
(aigc) [root@iZuf69qx2t0dhnq9rxy7mfZ ~]# cd stable-diffusion-webui/
(aigc) [root@iZuf69qx2t0dhnq9rxy7mfZ stable-diffusion-webui]# conda install -y pytorch torchvision torchaudio cpuonly -c pytorch
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: done

## Package Plan ##

  environment location: /root/.conda/envs/aigc

  added / updated specs:
    - cpuonly
    - pytorch
    - torchaudio
    - torchvision

The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    blas-1.0                   |              mkl           6 KB
    brotli-python-1.0.9        |  py310h6a678d5_7         907 KB
    certifi-2023.7.22          |  py310h06a4308_0         153 KB
    cffi-1.15.1                |  py310h74dc2b5_0         407 KB
    charset-normalizer-2.0.4   |     pyhd3eb1b0_0          35 KB
    cpuonly-2.0                |                0           2 KB  pytorch
    cryptography-41.0.3        |  py310h130f0dd_0         2.0 MB
    ffmpeg-4.3                 |       hf484d3e_0         9.9 MB  pytorch
    filelock-3.9.0             |  py310h06a4308_0          18 KB
    freetype-2.12.1            |       h4a9f257_0         626 KB
    giflib-5.2.1               |       h5eee18b_3          80 KB
    gmp-6.2.1                  |       h295c915_3         544 KB
    gmpy2-2.1.2                |  py310heeb90bb_0         517 KB
    gnutls-3.6.15              |       he1e5248_0         1.0 MB
    idna-3.4                   |  py310h06a4308_0          97 KB
    intel-openmp-2021.4.0      |    h06a4308_3561         4.2 MB
    jinja2-3.1.2               |  py310h06a4308_0         215 KB
    jpeg-9e                    |       h5eee18b_1         262 KB
    lame-3.100                 |       h7b6447c_0         323 KB
    lcms2-2.12                 |       h3be6417_0         312 KB
    lerc-3.0                   |       h295c915_0         196 KB
    libdeflate-1.17            |       h5eee18b_1          64 KB
    libiconv-1.16              |       h7f8727e_2         736 KB
    libidn2-2.3.4              |       h5eee18b_0         146 KB
    libjpeg-turbo-2.0.0        |       h9bf148f_0         950 KB  pytorch
    libpng-1.6.39              |       h5eee18b_0         304 KB
    libtasn1-4.19.0            |       h5eee18b_0          63 KB
    libtiff-4.5.1              |       h6a678d5_0         533 KB
    libunistring-0.9.10        |       h27cfd23_0         536 KB
    libwebp-1.3.2              |       h11a3e52_0          87 KB
    libwebp-base-1.3.2         |       h5eee18b_0         387 KB
    llvm-openmp-14.0.6         |       h9e868ea_0         4.4 MB
    lz4-c-1.9.4                |       h6a678d5_0         154 KB
    markupsafe-2.1.1           |  py310h7f8727e_0          34 KB
    mkl-2021.4.0               |     h06a4308_640       142.6 MB
    mkl-service-2.4.0          |  py310h7f8727e_0         177 KB
    mkl_fft-1.3.1              |  py310hd6ae3a3_0         567 KB
    mkl_random-1.2.2           |  py310h00e6091_0        1009 KB
    mpc-1.1.0                  |       h10f8cd9_1          90 KB
    mpfr-4.0.2                 |       hb69a4c5_1         487 KB
    mpmath-1.3.0               |  py310h06a4308_0         834 KB
    nettle-3.7.3               |       hbbd107a_1         809 KB
    networkx-3.1               |  py310h06a4308_0         2.8 MB
    numpy-1.24.3               |  py310hd5efca6_0          11 KB
    numpy-base-1.24.3          |  py310h8e6c178_0         6.9 MB
    openh264-2.1.1             |       h4ff587b_0         711 KB
    openjpeg-2.4.0             |       h3ad879b_0         331 KB
    pillow-10.0.1              |  py310ha6cbd5a_0         748 KB
    pycparser-2.21             |     pyhd3eb1b0_0          94 KB
    pyopenssl-23.2.0           |  py310h06a4308_0          97 KB
    pysocks-1.7.1              |  py310h06a4308_0          28 KB
    pytorch-2.1.0              |     py3.10_cpu_0        77.3 MB  pytorch
    pytorch-mutex-1.0          |              cpu           3 KB  pytorch
    pyyaml-6.0.1               |  py310h5eee18b_0         180 KB
    requests-2.31.0            |  py310h06a4308_0          97 KB
    six-1.16.0                 |     pyhd3eb1b0_1          18 KB
    sympy-1.11.1               |  py310h06a4308_0        11.8 MB
    torchaudio-2.1.0           |        py310_cpu         4.8 MB  pytorch
    torchvision-0.16.0         |        py310_cpu         6.9 MB  pytorch
    typing_extensions-4.7.1    |  py310h06a4308_0          55 KB
    urllib3-1.26.18            |  py310h06a4308_0         198 KB
    yaml-0.2.5                 |       h7b6447c_0          75 KB
    zstd-1.5.5                 |       hc292b87_0         647 KB
    ------------------------------------------------------------
                                           Total:       290.1 MB

The following NEW packages will be INSTALLED:

  blas               pkgs/main/linux-64::blas-1.0-mkl
  brotli-python      pkgs/main/linux-64::brotli-python-1.0.9-py310h6a678d5_7
  certifi            pkgs/main/linux-64::certifi-2023.7.22-py310h06a4308_0
  cffi               pkgs/main/linux-64::cffi-1.15.1-py310h74dc2b5_0
  charset-normalizer pkgs/main/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0
  cpuonly            pytorch/noarch::cpuonly-2.0-0
  cryptography       pkgs/main/linux-64::cryptography-41.0.3-py310h130f0dd_0
  ffmpeg             pytorch/linux-64::ffmpeg-4.3-hf484d3e_0
  filelock           pkgs/main/linux-64::filelock-3.9.0-py310h06a4308_0
  freetype           pkgs/main/linux-64::freetype-2.12.1-h4a9f257_0
  giflib             pkgs/main/linux-64::giflib-5.2.1-h5eee18b_3
  gmp                pkgs/main/linux-64::gmp-6.2.1-h295c915_3
  gmpy2              pkgs/main/linux-64::gmpy2-2.1.2-py310heeb90bb_0
  gnutls             pkgs/main/linux-64::gnutls-3.6.15-he1e5248_0
  idna               pkgs/main/linux-64::idna-3.4-py310h06a4308_0
  intel-openmp       pkgs/main/linux-64::intel-openmp-2021.4.0-h06a4308_3561
  jinja2             pkgs/main/linux-64::jinja2-3.1.2-py310h06a4308_0
  jpeg               pkgs/main/linux-64::jpeg-9e-h5eee18b_1
  lame               pkgs/main/linux-64::lame-3.100-h7b6447c_0
  lcms2              pkgs/main/linux-64::lcms2-2.12-h3be6417_0
  lerc               pkgs/main/linux-64::lerc-3.0-h295c915_0
  libdeflate         pkgs/main/linux-64::libdeflate-1.17-h5eee18b_1
  libiconv           pkgs/main/linux-64::libiconv-1.16-h7f8727e_2
  libidn2            pkgs/main/linux-64::libidn2-2.3.4-h5eee18b_0
  libjpeg-turbo      pytorch/linux-64::libjpeg-turbo-2.0.0-h9bf148f_0
  libpng             pkgs/main/linux-64::libpng-1.6.39-h5eee18b_0
  libtasn1           pkgs/main/linux-64::libtasn1-4.19.0-h5eee18b_0
  libtiff            pkgs/main/linux-64::libtiff-4.5.1-h6a678d5_0
  libunistring       pkgs/main/linux-64::libunistring-0.9.10-h27cfd23_0
  libwebp            pkgs/main/linux-64::libwebp-1.3.2-h11a3e52_0
  libwebp-base       pkgs/main/linux-64::libwebp-base-1.3.2-h5eee18b_0
  llvm-openmp        pkgs/main/linux-64::llvm-openmp-14.0.6-h9e868ea_0
  lz4-c              pkgs/main/linux-64::lz4-c-1.9.4-h6a678d5_0
  markupsafe         pkgs/main/linux-64::markupsafe-2.1.1-py310h7f8727e_0
  mkl                pkgs/main/linux-64::mkl-2021.4.0-h06a4308_640
  mkl-service        pkgs/main/linux-64::mkl-service-2.4.0-py310h7f8727e_0
  mkl_fft            pkgs/main/linux-64::mkl_fft-1.3.1-py310hd6ae3a3_0
  mkl_random         pkgs/main/linux-64::mkl_random-1.2.2-py310h00e6091_0
  mpc                pkgs/main/linux-64::mpc-1.1.0-h10f8cd9_1
  mpfr               pkgs/main/linux-64::mpfr-4.0.2-hb69a4c5_1
  mpmath             pkgs/main/linux-64::mpmath-1.3.0-py310h06a4308_0
  nettle             pkgs/main/linux-64::nettle-3.7.3-hbbd107a_1
  networkx           pkgs/main/linux-64::networkx-3.1-py310h06a4308_0
  numpy              pkgs/main/linux-64::numpy-1.24.3-py310hd5efca6_0
  numpy-base         pkgs/main/linux-64::numpy-base-1.24.3-py310h8e6c178_0
  openh264           pkgs/main/linux-64::openh264-2.1.1-h4ff587b_0
  openjpeg           pkgs/main/linux-64::openjpeg-2.4.0-h3ad879b_0
  pillow             pkgs/main/linux-64::pillow-10.0.1-py310ha6cbd5a_0
  pycparser          pkgs/main/noarch::pycparser-2.21-pyhd3eb1b0_0
  pyopenssl          pkgs/main/linux-64::pyopenssl-23.2.0-py310h06a4308_0
  pysocks            pkgs/main/linux-64::pysocks-1.7.1-py310h06a4308_0
  pytorch            pytorch/linux-64::pytorch-2.1.0-py3.10_cpu_0
  pytorch-mutex      pytorch/noarch::pytorch-mutex-1.0-cpu
  pyyaml             pkgs/main/linux-64::pyyaml-6.0.1-py310h5eee18b_0
  requests           pkgs/main/linux-64::requests-2.31.0-py310h06a4308_0
  six                pkgs/main/noarch::six-1.16.0-pyhd3eb1b0_1
  sympy              pkgs/main/linux-64::sympy-1.11.1-py310h06a4308_0
  torchaudio         pytorch/linux-64::torchaudio-2.1.0-py310_cpu
  torchvision        pytorch/linux-64::torchvision-0.16.0-py310_cpu
  typing_extensions  pkgs/main/linux-64::typing_extensions-4.7.1-py310h06a4308_0
  urllib3            pkgs/main/linux-64::urllib3-1.26.18-py310h06a4308_0
  yaml               pkgs/main/linux-64::yaml-0.2.5-h7b6447c_0
  zstd               pkgs/main/linux-64::zstd-1.5.5-hc292b87_0

Downloading and Extracting Packages
freetype-2.12.1      | 626 KB    | ####################################################################### | 100% 
libtasn1-4.19.0      | 63 KB     | ####################################################################### | 100% 
gmp-6.2.1            | 544 KB    | ####################################################################### | 100% 
libiconv-1.16        | 736 KB    | ####################################################################### | 100% 
lcms2-2.12           | 312 KB    | ####################################################################### | 100% 
nettle-3.7.3         | 809 KB    | ####################################################################### | 100% 
torchvision-0.16.0   | 6.9 MB    | ####################################################################### | 100% 
certifi-2023.7.22    | 153 KB    | ####################################################################### | 100% 
libdeflate-1.17      | 64 KB     | ####################################################################### | 100% 
lz4-c-1.9.4          | 154 KB    | ####################################################################### | 100% 
urllib3-1.26.18      | 198 KB    | ####################################################################### | 100% 
mkl_random-1.2.2     | 1009 KB   | ####################################################################### | 100% 
libjpeg-turbo-2.0.0  | 950 KB    | ####################################################################### | 100% 
mkl-2021.4.0         | 142.6 MB  | ####################################################################### | 100% 
zstd-1.5.5           | 647 KB    | ####################################################################### | 100% 
charset-normalizer-2 | 35 KB     | ####################################################################### | 100% 
six-1.16.0           | 18 KB     | ####################################################################### | 100% 
yaml-0.2.5           | 75 KB     | ####################################################################### | 100% 
jpeg-9e              | 262 KB    | ####################################################################### | 100% 
cffi-1.15.1          | 407 KB    | ####################################################################### | 100% 
numpy-1.24.3         | 11 KB     | ####################################################################### | 100% 
torchaudio-2.1.0     | 4.8 MB    | ####################################################################### | 100% 
markupsafe-2.1.1     | 34 KB     | ####################################################################### | 100% 
numpy-base-1.24.3    | 6.9 MB    | ####################################################################### | 100% 
idna-3.4             | 97 KB     | ####################################################################### | 100% 
cpuonly-2.0          | 2 KB      | ####################################################################### | 100% 
gmpy2-2.1.2          | 517 KB    | ####################################################################### | 100% 
ffmpeg-4.3           | 9.9 MB    | ####################################################################### | 100% 
mkl-service-2.4.0    | 177 KB    | ####################################################################### | 100% 
gnutls-3.6.15        | 1.0 MB    | ####################################################################### | 100% 
intel-openmp-2021.4. | 4.2 MB    | ####################################################################### | 100% 
libpng-1.6.39        | 304 KB    | ####################################################################### | 100% 
filelock-3.9.0       | 18 KB     | ####################################################################### | 100% 
blas-1.0             | 6 KB      | ####################################################################### | 100% 
pycparser-2.21       | 94 KB     | ####################################################################### | 100% 
typing_extensions-4. | 55 KB     | ####################################################################### | 100% 
pytorch-2.1.0        | 77.3 MB   | ####################################################################### | 100% 
pyopenssl-23.2.0     | 97 KB     | ####################################################################### | 100% 
libunistring-0.9.10  | 536 KB    | ####################################################################### | 100% 
openjpeg-2.4.0       | 331 KB    | ####################################################################### | 100% 
pysocks-1.7.1        | 28 KB     | ####################################################################### | 100% 
libwebp-base-1.3.2   | 387 KB    | ####################################################################### | 100% 
giflib-5.2.1         | 80 KB     | ####################################################################### | 100% 
lame-3.100           | 323 KB    | ####################################################################### | 100% 
libtiff-4.5.1        | 533 KB    | ####################################################################### | 100% 
pillow-10.0.1        | 748 KB    | ####################################################################### | 100% 
networkx-3.1         | 2.8 MB    | ####################################################################### | 100% 
sympy-1.11.1         | 11.8 MB   | ####################################################################### | 100% 
llvm-openmp-14.0.6   | 4.4 MB    | ####################################################################### | 100% 
libwebp-1.3.2        | 87 KB     | ####################################################################### | 100% 
libidn2-2.3.4        | 146 KB    | ####################################################################### | 100% 
mpmath-1.3.0         | 834 KB    | ####################################################################### | 100% 
jinja2-3.1.2         | 215 KB    | ####################################################################### | 100% 
mpfr-4.0.2           | 487 KB    | ####################################################################### | 100% 
mkl_fft-1.3.1        | 567 KB    | ####################################################################### | 100% 
openh264-2.1.1       | 711 KB    | ####################################################################### | 100% 
brotli-python-1.0.9  | 907 KB    | ####################################################################### | 100% 
mpc-1.1.0            | 90 KB     | ####################################################################### | 100% 
pyyaml-6.0.1         | 180 KB    | ####################################################################### | 100% 
requests-2.31.0      | 97 KB     | ####################################################################### | 100% 
lerc-3.0             | 196 KB    | ####################################################################### | 100% 
pytorch-mutex-1.0    | 3 KB      | ####################################################################### | 100% 
cryptography-41.0.3  | 2.0 MB    | ####################################################################### | 100% 
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
(aigc) [root@iZuf69qx2t0dhnq9rxy7mfZ stable-diffusion-webui]# pip3 install opencv-python-headless gfpgan open-clip-torch xformers pyngrok clip-anytorch
Looking in indexes: http://mirrors.cloud.aliyuncs.com/pypi/simple/
Collecting opencv-python-headless
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/9d/d7/e2aaf344254292d2046f9984b54212e4e7d69a57d30ae15e7294840710f6/opencv_python_headless-4.8.1.78-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (49.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 49.1/49.1 MB 54.0 MB/s eta 0:00:00
Collecting gfpgan
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/80/a2/84bb50a2655fda1e6f35ae57399526051b8a8b96ad730aea82abeaac4de8/gfpgan-1.3.8-py3-none-any.whl (52 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 52.2/52.2 kB 7.6 MB/s eta 0:00:00
Collecting open-clip-torch
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/7c/7f/952fdffa17b15d0c7c51a730860fcf4f4982528ecc753b190dcd46cc944b/open_clip_torch-2.23.0-py3-none-any.whl (1.5 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 79.4 MB/s eta 0:00:00
Collecting xformers
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/bb/9c/bb1a40d5e8db2b34dd6e6c0f851e86b38a3d0840fff1bf14240eff7d3da6/xformers-0.0.22.post7-cp310-cp310-manylinux2014_x86_64.whl (211.8 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.8/211.8 MB 6.5 MB/s eta 0:00:00
Collecting pyngrok
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/4a/eb/2a8f697ef78106ff69a967628f7dfbf066e7b8fc36bec55fb722dcb26b65/pyngrok-7.0.0.tar.gz (718 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 718.7/718.7 kB 50.0 MB/s eta 0:00:00
  Preparing metadata (setup.py) ... done
Collecting clip-anytorch
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/10/70/b92c966262ee935e32ae6c5b124f886fa9a8c441830f1764be31682976a6/clip_anytorch-2.5.2-py3-none-any.whl (1.4 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 73.6 MB/s eta 0:00:00
Requirement already satisfied: numpy>=1.21.2 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from opencv-python-headless) (1.24.3)
Collecting basicsr>=1.4.2 (from gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/86/41/00a6b000f222f0fa4c6d9e1d6dcc9811a374cabb8abb9d408b77de39648c/basicsr-1.4.2.tar.gz (172 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 172.5/172.5 kB 29.9 MB/s eta 0:00:00
  Preparing metadata (setup.py) ... done
Collecting facexlib>=0.2.5 (from gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/36/7b/2147339dafe1c4800514c9c21ee4444f8b419ce51dfc7695220a8e0069a6/facexlib-0.3.0-py3-none-any.whl (59 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 59.6/59.6 kB 8.2 MB/s eta 0:00:00
Collecting lmdb (from gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/83/67/8f32a70336d3ff1149cbd31e5a877997384f78c3940edc0abff95c8a5601/lmdb-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 299.2/299.2 kB 39.5 MB/s eta 0:00:00
Collecting opencv-python (from gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/b7/8a/b2f7e1a434d56bf1d7570fc5941ace0847404e1032d7f1f0b8fed896568d/opencv_python-4.8.1.78-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (61.7 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.7/61.7 MB 7.3 MB/s eta 0:00:00
Requirement already satisfied: pyyaml in /root/.conda/envs/aigc/lib/python3.10/site-packages (from gfpgan) (6.0.1)
Collecting scipy (from gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/18/44/7e8d208eb59a8224fcc474415104f13be9b378be8da63f76dfde12ec2b44/scipy-1.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (36.4 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 36.4/36.4 MB 74.6 MB/s eta 0:00:00
Collecting tb-nightly (from gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a5/47/2aebfa88cf72df1785068171d59d2925db15dd51f94c16081a074de0bb53/tb_nightly-2.16.0a20231025-py3-none-any.whl (5.5 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.5/5.5 MB 124.4 MB/s eta 0:00:00
Requirement already satisfied: torch>=1.7 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from gfpgan) (2.1.0)
Requirement already satisfied: torchvision in /root/.conda/envs/aigc/lib/python3.10/site-packages (from gfpgan) (0.16.0)
Collecting tqdm (from gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/00/e5/f12a80907d0884e6dff9c16d0c0114d81b8cd07dc3ae54c5e962cc83037e/tqdm-4.66.1-py3-none-any.whl (78 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.3/78.3 kB 12.9 MB/s eta 0:00:00
Collecting yapf (from gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/66/c9/d4b03b2490107f13ebd68fe9496d41ae41a7de6275ead56d0d4621b11ffd/yapf-0.40.2-py3-none-any.whl (254 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 254.7/254.7 kB 35.0 MB/s eta 0:00:00
Collecting regex (from open-clip-torch)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/8f/3e/4b8b40eb3c80aeaf360f0361d956d129bb3d23b2a3ecbe3a04a8f3bdd6d3/regex-2023.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (773 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 773.9/773.9 kB 74.0 MB/s eta 0:00:00
Collecting ftfy (from open-clip-torch)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/e1/1e/bf736f9576a8979752b826b75cbd83663ff86634ea3055a766e2d8ad3ee5/ftfy-6.1.1-py3-none-any.whl (53 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 53.1/53.1 kB 8.9 MB/s eta 0:00:00
Collecting huggingface-hub (from open-clip-torch)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/ef/b5/b6107bd65fa4c96fdf00e4733e2fe5729bb9e5e09997f63074bb43d3ab28/huggingface_hub-0.18.0-py3-none-any.whl (301 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 302.0/302.0 kB 42.6 MB/s eta 0:00:00
Collecting sentencepiece (from open-clip-torch)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/7f/e5/323dc813b3e1339305f888d035e2f3725084fc4dcf051995b366dd26cc90/sentencepiece-0.1.99-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 76.9 MB/s eta 0:00:00
Collecting protobuf (from open-clip-torch)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/c8/2c/03046cac73f46bfe98fc846ef629cf4f84c2f59258216aa2cc0d22bfca8f/protobuf-4.24.4-cp37-abi3-manylinux2014_x86_64.whl (311 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 311.6/311.6 kB 42.6 MB/s eta 0:00:00
Collecting timm (from open-clip-torch)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/df/e4/3a56b85846102b67af6937410f9f8dc314fc60529d6891fc003611fc3796/timm-0.9.8-py3-none-any.whl (2.2 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.2/2.2 MB 94.5 MB/s eta 0:00:00
Requirement already satisfied: filelock in /root/.conda/envs/aigc/lib/python3.10/site-packages (from torch>=1.7->gfpgan) (3.9.0)
Requirement already satisfied: typing-extensions in /root/.conda/envs/aigc/lib/python3.10/site-packages (from torch>=1.7->gfpgan) (4.7.1)
Requirement already satisfied: sympy in /root/.conda/envs/aigc/lib/python3.10/site-packages (from torch>=1.7->gfpgan) (1.11.1)
Requirement already satisfied: networkx in /root/.conda/envs/aigc/lib/python3.10/site-packages (from torch>=1.7->gfpgan) (3.1)
Requirement already satisfied: jinja2 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from torch>=1.7->gfpgan) (3.1.2)
Collecting fsspec (from torch>=1.7->gfpgan)
  Using cached http://mirrors.cloud.aliyuncs.com/pypi/packages/e8/f6/3eccfb530aac90ad1301c582da228e4763f19e719ac8200752a4841b0b2d/fsspec-2023.10.0-py3-none-any.whl (166 kB)
Collecting addict (from basicsr>=1.4.2->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/6a/00/b08f23b7d7e1e14ce01419a467b583edbb93c6cdb8654e54a9cc579cd61f/addict-2.4.0-py3-none-any.whl (3.8 kB)
Collecting future (from basicsr>=1.4.2->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/8f/2e/cf6accf7415237d6faeeebdc7832023c90e0282aa16fd3263db0eb4715ec/future-0.18.3.tar.gz (840 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 840.9/840.9 kB 69.0 MB/s eta 0:00:00
  Preparing metadata (setup.py) ... done
Requirement already satisfied: Pillow in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr>=1.4.2->gfpgan) (10.0.1)
Requirement already satisfied: requests in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr>=1.4.2->gfpgan) (2.31.0)
Collecting scikit-image (from basicsr>=1.4.2->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/f1/6c/49f5a0ce8ddcdbdac5ac69c129654938cc6de0a936303caa6cad495ceb2a/scikit_image-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.7 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.7/14.7 MB 106.4 MB/s eta 0:00:00
Collecting filterpy (from facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/f6/1d/ac8914360460fafa1990890259b7fa5ef7ba4cd59014e782e4ab3ab144d8/filterpy-1.4.5.zip (177 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.0/178.0 kB 29.8 MB/s eta 0:00:00
  Preparing metadata (setup.py) ... done
Collecting numba (from facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/ed/13/b66627125b35f2987bd9872cf028b5e1e1ffcbc8d1e182ac4e84eed3998f/numba-0.58.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.6 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 98.8 MB/s eta 0:00:00
Collecting wcwidth>=0.2.5 (from ftfy->open-clip-torch)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/58/19/a9ce39f89cf58cf1e7ce01c8bb76ab7e2c7aadbc5a2136c3e192097344f5/wcwidth-0.2.8-py2.py3-none-any.whl (31 kB)
Collecting packaging>=20.9 (from huggingface-hub->open-clip-torch)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/ec/1a/610693ac4ee14fcdf2d9bf3c493370e4f2ef7ae2e19217d7a237ff42367d/packaging-23.2-py3-none-any.whl (53 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 53.0/53.0 kB 10.7 MB/s eta 0:00:00
Collecting absl-py>=0.4 (from tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/01/e4/dc0a1dcc4e74e08d7abedab278c795eef54a224363bb18f5692f416d834f/absl_py-2.0.0-py3-none-any.whl (130 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 130.2/130.2 kB 20.5 MB/s eta 0:00:00
Collecting grpcio>=1.48.2 (from tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/20/7f/e76618521aa9d33c6c1c9c3473f866da521678aa6ea2f4df3a896757748c/grpcio-1.59.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.3/5.3 MB 119.1 MB/s eta 0:00:00
Collecting google-auth<3,>=1.6.3 (from tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/39/7c/2e4fa55a99f83ef9ef229ac5d59c44ceb90e2d0145711590c0fa39669f32/google_auth-2.23.3-py2.py3-none-any.whl (182 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 182.3/182.3 kB 29.4 MB/s eta 0:00:00
Collecting google-auth-oauthlib<2,>=0.5 (from tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/ce/33/a907b4b67245647746dde8d61e1643ef5d210c88e090d491efd89eff9f95/google_auth_oauthlib-1.1.0-py2.py3-none-any.whl (19 kB)
Collecting markdown>=2.6.8 (from tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/bb/c1/50caaec6cadc1c6adc8fe351e03bd646d6e4dd17f55fca0f4c8d7ea8d3e9/Markdown-3.5-py3-none-any.whl (101 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 101.7/101.7 kB 21.3 MB/s eta 0:00:00
Requirement already satisfied: setuptools>=41.0.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tb-nightly->gfpgan) (68.0.0)
Requirement already satisfied: six>1.9 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tb-nightly->gfpgan) (1.16.0)
Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/73/c6/825dab04195756cf8ff2e12698f22513b3db2f64925bdd41671bfb33aaa5/tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl (6.6 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.6/6.6 MB 127.2 MB/s eta 0:00:00
Collecting werkzeug>=1.0.1 (from tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/c3/fc/254c3e9b5feb89ff5b9076a23218dafbc99c96ac5941e900b71206e6313b/werkzeug-3.0.1-py3-none-any.whl (226 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 226.7/226.7 kB 26.6 MB/s eta 0:00:00
Collecting safetensors (from timm->open-clip-torch)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/20/4e/878b080dbda92666233ec6f316a53969edcb58eab1aa399a64d0521cf953/safetensors-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 85.3 MB/s eta 0:00:00
Collecting importlib-metadata>=6.6.0 (from yapf->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/cc/37/db7ba97e676af155f5fcb1a35466f446eadc9104e25b83366e8088c9c926/importlib_metadata-6.8.0-py3-none-any.whl (22 kB)
Collecting platformdirs>=3.5.1 (from yapf->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/56/29/3ec311dc18804409ecf0d2b09caa976f3ae6215559306b5b530004e11156/platformdirs-3.11.0-py3-none-any.whl (17 kB)
Collecting tomli>=2.0.1 (from yapf->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl (12 kB)
Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a2/91/2d843adb9fbd911e0da45fbf6f18ca89d07a087c3daa23e955584f90ebf4/cachetools-5.3.2-py3-none-any.whl (9.3 kB)
Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/cd/8e/bea464350e1b8c6ed0da3a312659cb648804a08af6cacc6435867f74f8bd/pyasn1_modules-0.3.0-py2.py3-none-any.whl (181 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 181.3/181.3 kB 28.5 MB/s eta 0:00:00
Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl (34 kB)
Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<2,>=0.5->tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/6f/bb/5deac77a9af870143c684ab46a7934038a53eb4aa975bc0687ed6ca2c610/requests_oauthlib-1.3.1-py2.py3-none-any.whl (23 kB)
Collecting zipp>=0.5 (from importlib-metadata>=6.6.0->yapf->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/d9/66/48866fc6b158c81cc2bfecc04c480f105c6040e8b077bc54c634b4a67926/zipp-3.17.0-py3-none-any.whl (7.4 kB)
Requirement already satisfied: charset-normalizer<4,>=2 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from requests->basicsr>=1.4.2->gfpgan) (2.0.4)
Requirement already satisfied: idna<4,>=2.5 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from requests->basicsr>=1.4.2->gfpgan) (3.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from requests->basicsr>=1.4.2->gfpgan) (1.26.18)
Requirement already satisfied: certifi>=2017.4.17 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from requests->basicsr>=1.4.2->gfpgan) (2023.7.22)
Requirement already satisfied: MarkupSafe>=2.1.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from werkzeug>=1.0.1->tb-nightly->gfpgan) (2.1.1)
Collecting matplotlib (from filterpy->facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/b5/24/aaccf324ce862bb82277e8814d2aebbb2a2c160d04e95aa2b8c9dc3137a9/matplotlib-3.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.6 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.6/11.6 MB 117.5 MB/s eta 0:00:00
Collecting llvmlite<0.42,>=0.41.0dev0 (from numba->facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/57/7d/ef28d5812f852b93bd2a583d00cdcde56833d31b645ae0eaa7e71eecfb4e/llvmlite-0.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.6 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.6/43.6 MB 61.6 MB/s eta 0:00:00
Collecting imageio>=2.27 (from scikit-image->basicsr>=1.4.2->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/9b/82/473e452d3f21a9cd7e792a827f8df58bdff614fd2fff33d7bf6c4c128da7/imageio-2.31.6-py3-none-any.whl (313 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 313.2/313.2 kB 40.9 MB/s eta 0:00:00
Collecting tifffile>=2022.8.12 (from scikit-image->basicsr>=1.4.2->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/f5/72/68ea763b5f3e3d9871492683059ed4724fd700dbe54aa03cdda7a9692129/tifffile-2023.9.26-py3-none-any.whl (222 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 222.9/222.9 kB 33.3 MB/s eta 0:00:00
Collecting lazy_loader>=0.3 (from scikit-image->basicsr>=1.4.2->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a1/c3/65b3814e155836acacf720e5be3b5757130346670ac454fee29d3eda1381/lazy_loader-0.3-py3-none-any.whl (9.1 kB)
Requirement already satisfied: mpmath>=0.19 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from sympy->torch>=1.7->gfpgan) (1.3.0)
Collecting pyasn1<0.6.0,>=0.4.6 (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/14/e5/b56a725cbde139aa960c26a1a3ca4d4af437282e20b5314ee6a3501e7dfc/pyasn1-0.5.0-py2.py3-none-any.whl (83 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.9/83.9 kB 14.7 MB/s eta 0:00:00
Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<2,>=0.5->tb-nightly->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/7e/80/cab10959dc1faead58dc8384a781dfbf93cb4d33d50988f7a69f1b7c9bbe/oauthlib-3.2.2-py3-none-any.whl (151 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 151.7/151.7 kB 23.5 MB/s eta 0:00:00
Collecting contourpy>=1.0.1 (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/f1/6b/e4b0f8708f22dd7c321f87eadbb98708975e115ac6582eb46d1f32197ce6/contourpy-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 301.7/301.7 kB 22.8 MB/s eta 0:00:00
Collecting cycler>=0.10 (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl (8.3 kB)
Collecting fonttools>=4.22.0 (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/ac/ed/9a33eca5e2cc35dc1fea0a968509c653db9a99a5979656ae57c6c019d66b/fonttools-4.43.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 113.5 MB/s eta 0:00:00
Collecting kiwisolver>=1.0.1 (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/6f/40/4ab1fdb57fced80ce5903f04ae1aed7c1d5939dda4fd0c0aa526c12fe28a/kiwisolver-1.4.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.6 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 102.0 MB/s eta 0:00:00
Collecting pyparsing>=2.3.1 (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/39/92/8486ede85fcc088f1b3dba4ce92dd29d126fd96b0008ea213167940a2475/pyparsing-3.1.1-py3-none-any.whl (103 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 103.1/103.1 kB 16.9 MB/s eta 0:00:00
Collecting python-dateutil>=2.7 (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan)
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 247.7/247.7 kB 39.0 MB/s eta 0:00:00
Building wheels for collected packages: pyngrok, basicsr, filterpy, future
  Building wheel for pyngrok (setup.py) ... done
  Created wheel for pyngrok: filename=pyngrok-7.0.0-py3-none-any.whl size=21129 sha256=519d3b2dea77225bf9ac1e466773f472f400abc38e75f188d6b067224b20ab27
  Stored in directory: /root/.cache/pip/wheels/84/b7/bf/8cb8257af3e389d507ff09b3c5ef620729bab0cbd2d8157007
  Building wheel for basicsr (setup.py) ... done
  Created wheel for basicsr: filename=basicsr-1.4.2-py3-none-any.whl size=214818 sha256=6007014d21a6bf183b81c296c97bb72cc799a5e2c54c74552be32200e10e4052
  Stored in directory: /root/.cache/pip/wheels/33/83/12/90110c3bdf40053b25852a485620a46870d3eecf340edd75df
  Building wheel for filterpy (setup.py) ... done
  Created wheel for filterpy: filename=filterpy-1.4.5-py3-none-any.whl size=110459 sha256=756e429c75f3d321f2d6b695736ec50beba7924876317d9880ba24acd61ca917
  Stored in directory: /root/.cache/pip/wheels/b5/75/0c/22ebe171bf7c91d9b33d1b97456b6e4eaf907182fc7ba8cc64
  Building wheel for future (setup.py) ... done
  Created wheel for future: filename=future-0.18.3-py3-none-any.whl size=492024 sha256=0261878dcd51fbabf2bdd81ac8063e423b1e66f87059ba29a6821edffdfd4de1
  Stored in directory: /root/.cache/pip/wheels/69/4f/ff/84422c6b166bc98b2c24f8c497fa2e3d94cdfdc02b51b5a857
Successfully built pyngrok basicsr filterpy future
Installing collected packages: wcwidth, sentencepiece, lmdb, addict, zipp, werkzeug, tqdm, tomli, tifffile, tensorboard-data-server, scipy, safetensors, regex, python-dateutil, pyparsing, pyngrok, pyasn1, protobuf, platformdirs, packaging, opencv-python-headless, opencv-python, oauthlib, markdown, llvmlite, lazy_loader, kiwisolver, imageio, grpcio, future, ftfy, fsspec, fonttools, cycler, contourpy, cachetools, absl-py, scikit-image, rsa, requests-oauthlib, pyasn1-modules, numba, matplotlib, importlib-metadata, huggingface-hub, yapf, xformers, google-auth, filterpy, timm, google-auth-oauthlib, facexlib, clip-anytorch, tb-nightly, open-clip-torch, basicsr, gfpgan
Successfully installed absl-py-2.0.0 addict-2.4.0 basicsr-1.4.2 cachetools-5.3.2 clip-anytorch-2.5.2 contourpy-1.1.1 cycler-0.12.1 facexlib-0.3.0 filterpy-1.4.5 fonttools-4.43.1 fsspec-2023.10.0 ftfy-6.1.1 future-0.18.3 gfpgan-1.3.8 google-auth-2.23.3 google-auth-oauthlib-1.1.0 grpcio-1.59.0 huggingface-hub-0.18.0 imageio-2.31.6 importlib-metadata-6.8.0 kiwisolver-1.4.5 lazy_loader-0.3 llvmlite-0.41.1 lmdb-1.4.1 markdown-3.5 matplotlib-3.8.0 numba-0.58.1 oauthlib-3.2.2 open-clip-torch-2.23.0 opencv-python-4.8.1.78 opencv-python-headless-4.8.1.78 packaging-23.2 platformdirs-3.11.0 protobuf-4.24.4 pyasn1-0.5.0 pyasn1-modules-0.3.0 pyngrok-7.0.0 pyparsing-3.1.1 python-dateutil-2.8.2 regex-2023.10.3 requests-oauthlib-1.3.1 rsa-4.9 safetensors-0.4.0 scikit-image-0.22.0 scipy-1.11.3 sentencepiece-0.1.99 tb-nightly-2.16.0a20231025 tensorboard-data-server-0.7.2 tifffile-2023.9.26 timm-0.9.8 tomli-2.0.1 tqdm-4.66.1 wcwidth-0.2.8 werkzeug-3.0.1 xformers-0.0.22.post7 yapf-0.40.2 zipp-3.17.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
(aigc) [root@iZuf69qx2t0dhnq9rxy7mfZ stable-diffusion-webui]# pip3 install -r requirements_versions.txt
Looking in indexes: http://mirrors.cloud.aliyuncs.com/pypi/simple/
Collecting blendmodes==2022 (from -r requirements_versions.txt (line 1))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a9/1a/fc3216efda12211fd50823a720fed817e6d936ecacd9531277207c4e9838/blendmodes-2022-py3-none-any.whl (10 kB)
Collecting transformers==4.25.1 (from -r requirements_versions.txt (line 2))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/90/5b/02becd3e137fdacdc30c6442d04094d0b92e500f978df00b1a197b68fd2b/transformers-4.25.1-py3-none-any.whl (5.8 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.8/5.8 MB 31.7 MB/s eta 0:00:00
Collecting accelerate==0.12.0 (from -r requirements_versions.txt (line 3))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/52/36/1a3aec552da693acbb65f9f3613433bea0e065448ef27dc7a9c2f2fb1efa/accelerate-0.12.0-py3-none-any.whl (143 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 144.0/144.0 kB 22.6 MB/s eta 0:00:00
Requirement already satisfied: basicsr==1.4.2 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from -r requirements_versions.txt (line 4)) (1.4.2)
Requirement already satisfied: gfpgan==1.3.8 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from -r requirements_versions.txt (line 5)) (1.3.8)
Collecting gradio==3.16.2 (from -r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/67/c6/71bfe2c663052d6bfbb638b301d77f763b397f843dcd6ed6f9938288305d/gradio-3.16.2-py3-none-any.whl (14.2 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.2/14.2 MB 101.8 MB/s eta 0:00:00
Collecting numpy==1.23.3 (from -r requirements_versions.txt (line 7))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/c7/31/0298a8f62a8c82b8c542f78f3761e67cb8bf0450b3e61bbe66c5c54c1a81/numpy-1.23.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.1/17.1 MB 99.9 MB/s eta 0:00:00
Collecting Pillow==9.4.0 (from -r requirements_versions.txt (line 8))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/40/d1/b646804eb150a94c76abc54576ea885f71030bab6c541ccb9594db5da64a/Pillow-9.4.0-cp310-cp310-manylinux_2_28_x86_64.whl (3.4 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 89.3 MB/s eta 0:00:00
Collecting realesrgan==0.3.0 (from -r requirements_versions.txt (line 9))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/b2/3e/e2f79917a04991b9237df264f7abab2b58cf94748e7acfb6677b55232ca1/realesrgan-0.3.0-py3-none-any.whl (26 kB)
Requirement already satisfied: torch in /root/.conda/envs/aigc/lib/python3.10/site-packages (from -r requirements_versions.txt (line 10)) (2.1.0)
Collecting omegaconf==2.2.3 (from -r requirements_versions.txt (line 11))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/98/c3/f00dcd6935c11555db6ad55bdada58706120974cacf9a861a7b948ea0619/omegaconf-2.2.3-py3-none-any.whl (79 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 79.3/79.3 kB 13.4 MB/s eta 0:00:00
Collecting pytorch_lightning==1.7.6 (from -r requirements_versions.txt (line 12))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/f2/22/37c64bd5b426297c71ecbb01ec2d340f013556a973a2cd6cd0aa68cda1ab/pytorch_lightning-1.7.6-py3-none-any.whl (707 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 707.5/707.5 kB 66.0 MB/s eta 0:00:00
Collecting scikit-image==0.19.2 (from -r requirements_versions.txt (line 13))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a7/e9/da2c1ec59739654294d8e9f182e7e50c8d9b92dd5c0f6758dedb3a69d7ae/scikit_image-0.19.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.0/14.0 MB 105.6 MB/s eta 0:00:00
Collecting fonts (from -r requirements_versions.txt (line 14))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/3e/6a/ff04b5b3d22389aa57d09989ea708b93ca8f09ff57828d1ffb12ae6424a6/fonts-0.0.3-py3-none-any.whl (4.2 kB)
Collecting font-roboto (from -r requirements_versions.txt (line 15))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/79/9d/1e44c56b126ade67ed034fc8ba5a75f3dc926dd339820755bb71899d59b5/font-roboto-0.0.1.tar.gz (2.4 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 95.1 MB/s eta 0:00:00
  Preparing metadata (setup.py) ... done
Collecting timm==0.6.7 (from -r requirements_versions.txt (line 16))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/72/ed/358a8bc5685c31c0fe7765351b202cf6a8c087893b5d2d64f63c950f8beb/timm-0.6.7-py3-none-any.whl (509 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 510.0/510.0 kB 60.3 MB/s eta 0:00:00
Collecting piexif==1.1.3 (from -r requirements_versions.txt (line 17))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/2c/d8/6f63147dd73373d051c5eb049ecd841207f898f50a5a1d4378594178f6cf/piexif-1.1.3-py2.py3-none-any.whl (20 kB)
Collecting einops==0.4.1 (from -r requirements_versions.txt (line 18))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/df/bf/18c6c753fe699c44e3d6013d75074e15f139f9a9adbaeb108f61d73d18d1/einops-0.4.1-py3-none-any.whl (28 kB)
Collecting jsonmerge==1.8.0 (from -r requirements_versions.txt (line 19))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/37/1b/05dd6fd53a76a73e898f3d2b60d02ee90af9e11de2f8e3802a6262fa1ca9/jsonmerge-1.8.0.tar.gz (26 kB)
  Preparing metadata (setup.py) ... done
Collecting clean-fid==0.1.29 (from -r requirements_versions.txt (line 20))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/b3/7b/163a5f8be59f3eb473656d3a74e33169558e1e30bee0a63a20e22ddefb08/clean_fid-0.1.29-py3-none-any.whl (24 kB)
Collecting resize-right==0.0.2 (from -r requirements_versions.txt (line 21))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/1d/08/c5c0640a08d7b373f1175c536462862054ee32145dae457c89916cd568d2/resize_right-0.0.2-py3-none-any.whl (8.9 kB)
Collecting torchdiffeq==0.2.3 (from -r requirements_versions.txt (line 22))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/2c/9b/b9c3e17f261e30f630511390e0dd33fc529073f1f2db222a1f09dc49a1ae/torchdiffeq-0.2.3-py3-none-any.whl (31 kB)
Collecting kornia==0.6.7 (from -r requirements_versions.txt (line 23))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/7a/7f/5ec91cec58e02a41b1b0ea0fe9f0b2506cb68d497cf94382d464b2af77f4/kornia-0.6.7-py2.py3-none-any.whl (565 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 565.1/565.1 kB 60.6 MB/s eta 0:00:00
Collecting lark==1.1.2 (from -r requirements_versions.txt (line 24))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/cb/c0/a670f7247fd552ea94d02aed37ecaed3198448f01a402a805c12f2a4db76/lark-1.1.2-py2.py3-none-any.whl (104 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.7/104.7 kB 16.9 MB/s eta 0:00:00
Collecting inflection==0.5.1 (from -r requirements_versions.txt (line 25))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/59/91/aa6bde563e0085a02a435aa99b49ef75b0a4b062635e606dab23ce18d720/inflection-0.5.1-py2.py3-none-any.whl (9.5 kB)
Collecting GitPython==3.1.27 (from -r requirements_versions.txt (line 26))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/83/32/ce68915670da6fd6b1e3fb4b3554b4462512f6441dddd194fc0f4f6ec653/GitPython-3.1.27-py3-none-any.whl (181 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 181.2/181.2 kB 27.9 MB/s eta 0:00:00
Collecting torchsde==0.2.5 (from -r requirements_versions.txt (line 27))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/73/8d/efd3e7b31ea854d0bd6886aa3cf44914adce113a6d460850af41ac1dd4dd/torchsde-0.2.5-py3-none-any.whl (59 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 59.2/59.2 kB 11.3 MB/s eta 0:00:00
Collecting safetensors==0.2.7 (from -r requirements_versions.txt (line 28))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/e1/87/78f99820e15c6449756c3c755b5ae65b15627020d2960507a69ca625c557/safetensors-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 82.4 MB/s eta 0:00:00
Collecting httpcore<=0.15 (from -r requirements_versions.txt (line 29))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/ad/b9/260603ca0913072a10a4367c2dca9998706812a8c1f4558eca510f85ae16/httpcore-0.15.0-py3-none-any.whl (68 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 68.4/68.4 kB 12.6 MB/s eta 0:00:00
Collecting fastapi==0.90.1 (from -r requirements_versions.txt (line 30))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/2f/91/8abc12dcec2427c9631fdf15bff006ab5c6cba04b420d346b6c101740db8/fastapi-0.90.1-py3-none-any.whl (56 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.2/56.2 kB 10.3 MB/s eta 0:00:00
Collecting aenum<4,>=3.1.7 (from blendmodes==2022->-r requirements_versions.txt (line 1))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/d0/fa/ca0c66b388624ba9dbbf35aab3a9f326bfdf5e56a7237fe8f1b600da6864/aenum-3.1.15-py3-none-any.whl (137 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 137.6/137.6 kB 24.3 MB/s eta 0:00:00
Collecting deprecation<3,>=2.1.0 (from blendmodes==2022->-r requirements_versions.txt (line 1))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/02/c3/253a89ee03fc9b9682f1541728eb66db7db22148cd94f89ab22528cd1e1b/deprecation-2.1.0-py2.py3-none-any.whl (11 kB)
Requirement already satisfied: filelock in /root/.conda/envs/aigc/lib/python3.10/site-packages (from transformers==4.25.1->-r requirements_versions.txt (line 2)) (3.9.0)
Requirement already satisfied: huggingface-hub<1.0,>=0.10.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from transformers==4.25.1->-r requirements_versions.txt (line 2)) (0.18.0)
Requirement already satisfied: packaging>=20.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from transformers==4.25.1->-r requirements_versions.txt (line 2)) (23.2)
Requirement already satisfied: pyyaml>=5.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from transformers==4.25.1->-r requirements_versions.txt (line 2)) (6.0.1)
Requirement already satisfied: regex!=2019.12.17 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from transformers==4.25.1->-r requirements_versions.txt (line 2)) (2023.10.3)
Requirement already satisfied: requests in /root/.conda/envs/aigc/lib/python3.10/site-packages (from transformers==4.25.1->-r requirements_versions.txt (line 2)) (2.31.0)
Collecting tokenizers!=0.11.3,<0.14,>=0.11.1 (from transformers==4.25.1->-r requirements_versions.txt (line 2))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/94/60/ff26cce378023624ffcad91edaa4871f561d6ba7295185c45037ddba80e2/tokenizers-0.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/7.8 MB 111.8 MB/s eta 0:00:00
Requirement already satisfied: tqdm>=4.27 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from transformers==4.25.1->-r requirements_versions.txt (line 2)) (4.66.1)
Collecting psutil (from accelerate==0.12.0->-r requirements_versions.txt (line 3))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/19/06/4e3fa3c1b79271e933c5ddbad3a48aa2c3d5f592a0fb7c037f3e0f619f4d/psutil-5.9.6-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 283.6/283.6 kB 35.3 MB/s eta 0:00:00
Requirement already satisfied: addict in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr==1.4.2->-r requirements_versions.txt (line 4)) (2.4.0)
Requirement already satisfied: future in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr==1.4.2->-r requirements_versions.txt (line 4)) (0.18.3)
Requirement already satisfied: lmdb in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr==1.4.2->-r requirements_versions.txt (line 4)) (1.4.1)
Requirement already satisfied: opencv-python in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr==1.4.2->-r requirements_versions.txt (line 4)) (4.8.1.78)
Requirement already satisfied: scipy in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr==1.4.2->-r requirements_versions.txt (line 4)) (1.11.3)
Requirement already satisfied: tb-nightly in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr==1.4.2->-r requirements_versions.txt (line 4)) (2.16.0a20231025)
Requirement already satisfied: torchvision in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr==1.4.2->-r requirements_versions.txt (line 4)) (0.16.0)
Requirement already satisfied: yapf in /root/.conda/envs/aigc/lib/python3.10/site-packages (from basicsr==1.4.2->-r requirements_versions.txt (line 4)) (0.40.2)
Requirement already satisfied: facexlib>=0.2.5 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from gfpgan==1.3.8->-r requirements_versions.txt (line 5)) (0.3.0)
Collecting aiofiles (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/c5/19/5af6804c4cc0fed83f47bff6e413a98a36618e7d40185cd36e69737f3b0e/aiofiles-23.2.1-py3-none-any.whl (15 kB)
Collecting aiohttp (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/41/8e/4c48881316bbced3d13089c4d0df4be321ce79a0c695d82dee9996aaf56b/aiohttp-3.8.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 75.8 MB/s eta 0:00:00
Collecting altair>=4.2.0 (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/17/16/b12fca347ff9d062e3c44ad9641d2ec50364570a059f3078ada3a5119d7a/altair-5.1.2-py3-none-any.whl (516 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 516.2/516.2 kB 54.4 MB/s eta 0:00:00
Collecting ffmpy (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/9a/06/49b275a312eb207e2a2718a7414dedfded05088437352b67aaa9a355f948/ffmpy-0.3.1.tar.gz (5.5 kB)
  Preparing metadata (setup.py) ... done
Requirement already satisfied: fsspec in /root/.conda/envs/aigc/lib/python3.10/site-packages (from gradio==3.16.2->-r requirements_versions.txt (line 6)) (2023.10.0)
Collecting httpx (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/33/0d/d9ce469af019741c8999711d36b270ff992ceb1a0293f73f9f34fdf131e9/httpx-0.25.0-py3-none-any.whl (75 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.7/75.7 kB 13.5 MB/s eta 0:00:00
Requirement already satisfied: jinja2 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from gradio==3.16.2->-r requirements_versions.txt (line 6)) (3.1.2)
Collecting markdown-it-py[linkify,plugins] (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl (87 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 87.5/87.5 kB 14.1 MB/s eta 0:00:00
Requirement already satisfied: markupsafe in /root/.conda/envs/aigc/lib/python3.10/site-packages (from gradio==3.16.2->-r requirements_versions.txt (line 6)) (2.1.1)
Requirement already satisfied: matplotlib in /root/.conda/envs/aigc/lib/python3.10/site-packages (from gradio==3.16.2->-r requirements_versions.txt (line 6)) (3.8.0)
Collecting orjson (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/f4/66/d13cb488f5e74d603ebeb0b7b5032a81462d76d0b197a7b2002843ca1055/orjson-3.9.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 138.7/138.7 kB 24.5 MB/s eta 0:00:00
Collecting pandas (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/2f/0e/3b74e8f7c908082793adafb02753477f653ccd7e189f3ba070757d2d0e65/pandas-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.3 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.3/12.3 MB 114.9 MB/s eta 0:00:00
Collecting pycryptodome (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/00/e6/73931df4046e34a6354d323b4a5b5c18e5184f4a08687806ee3353c81a6b/pycryptodome-3.19.0-cp35-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 103.8 MB/s eta 0:00:00
Collecting pydantic (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/73/66/0a72c9fcde42e5650c8d8d5c5c1873b9a3893018020c77ca8eb62708b923/pydantic-2.4.2-py3-none-any.whl (395 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 395.8/395.8 kB 48.6 MB/s eta 0:00:00
Collecting pydub (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a6/53/d78dc063216e62fc55f6b2eebb447f6a4b0a59f55c8406376f76bf959b08/pydub-0.25.1-py2.py3-none-any.whl (32 kB)
Collecting python-multipart (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/b4/ff/b1e11d8bffb5e0e1b6d27f402eeedbeb9be6df2cdbc09356a1ae49806dbf/python_multipart-0.0.6-py3-none-any.whl (45 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.7/45.7 kB 7.8 MB/s eta 0:00:00
Requirement already satisfied: typing-extensions in /root/.conda/envs/aigc/lib/python3.10/site-packages (from gradio==3.16.2->-r requirements_versions.txt (line 6)) (4.7.1)
Collecting uvicorn (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/79/96/b0882a1c3f7ef3dd86879e041212ae5b62b4bd352320889231cc735a8e8f/uvicorn-0.23.2-py3-none-any.whl (59 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 59.5/59.5 kB 10.8 MB/s eta 0:00:00
Collecting websockets>=10.0 (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/9a/12/c7a7504f5bf74d6ee0533f6fc7d30d8f4b79420ab179d1df2484b07602eb/websockets-12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 130.2/130.2 kB 17.1 MB/s eta 0:00:00
Collecting antlr4-python3-runtime==4.9.* (from omegaconf==2.2.3->-r requirements_versions.txt (line 11))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/3e/38/7859ff46355f76f8d19459005ca000b6e7012f2f1ca597746cbcd1fbfe5e/antlr4-python3-runtime-4.9.3.tar.gz (117 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 117.0/117.0 kB 19.9 MB/s eta 0:00:00
  Preparing metadata (setup.py) ... done
Collecting tensorboard>=2.9.1 (from pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/69/38/fb2ac9c4c8efbe020ae88f6772be87d51ef18526ac541fc3393786b7c45a/tensorboard-2.15.0-py3-none-any.whl (5.6 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.6/5.6 MB 107.5 MB/s eta 0:00:00
Collecting torchmetrics>=0.7.0 (from pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a3/88/cc27059747ddecff744826e38014822023cbfff4ca079a6ee9a96602dd0b/torchmetrics-1.2.0-py3-none-any.whl (805 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 805.2/805.2 kB 69.7 MB/s eta 0:00:00
Collecting pyDeprecate>=0.3.1 (from pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/40/9c/173f3cf770e66f3c9592318806aebb8617ba405d6d4c09493dabea75985c/pyDeprecate-0.3.2-py3-none-any.whl (10 kB)
Requirement already satisfied: networkx>=2.2 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from scikit-image==0.19.2->-r requirements_versions.txt (line 13)) (3.1)
Requirement already satisfied: imageio>=2.4.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from scikit-image==0.19.2->-r requirements_versions.txt (line 13)) (2.31.6)
Requirement already satisfied: tifffile>=2019.7.26 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from scikit-image==0.19.2->-r requirements_versions.txt (line 13)) (2023.9.26)
Collecting PyWavelets>=1.1.1 (from scikit-image==0.19.2->-r requirements_versions.txt (line 13))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/3e/fc/651024e8b6e69bef6def2cbe27d520309f4ffc56b8d4885ab7046e1edc6c/PyWavelets-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.8/6.8 MB 107.4 MB/s eta 0:00:00
Collecting jsonschema (from jsonmerge==1.8.0->-r requirements_versions.txt (line 19))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/0f/bf/a84bc75f069f4f156e1c0d9892fb7325945106c6ecaad9f29d24360872af/jsonschema-4.19.1-py3-none-any.whl (83 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.3/83.3 kB 12.3 MB/s eta 0:00:00
Collecting requests (from transformers==4.25.1->-r requirements_versions.txt (line 2))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/29/c1/24814557f1d22c56d50280771a17307e6bf87b70727d975fd6b2ce6b014a/requests-2.25.1-py2.py3-none-any.whl (61 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.2/61.2 kB 11.6 MB/s eta 0:00:00
Collecting gitdb<5,>=4.0.1 (from GitPython==3.1.27->-r requirements_versions.txt (line 26))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/fd/5b/8f0c4a5bb9fd491c277c21eff7ccae71b47d43c4446c9d0c6cff2fe8c2c4/gitdb-4.0.11-py3-none-any.whl (62 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.7/62.7 kB 11.2 MB/s eta 0:00:00
Collecting boltons>=20.2.1 (from torchsde==0.2.5->-r requirements_versions.txt (line 27))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/22/f0/d81d7f6688d25cfb8b8fce60504c3cbf5d5890b9a1d71911047aa89707c2/boltons-23.0.0-py2.py3-none-any.whl (194 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 194.8/194.8 kB 23.8 MB/s eta 0:00:00
Collecting trampoline>=0.1.2 (from torchsde==0.2.5->-r requirements_versions.txt (line 27))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/73/54/d2805324fb746d8da86d3844bee4f55c0cfd6c136de61b713772d44c5bea/trampoline-0.1.2-py3-none-any.whl (5.2 kB)
Collecting pydantic (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/e0/2f/d6f17f8385d718233bcae893d27525443d41201c938b68a4af3d591a33e4/pydantic-1.10.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 46.3 MB/s eta 0:00:00
Collecting starlette<0.24.0,>=0.22.0 (from fastapi==0.90.1->-r requirements_versions.txt (line 30))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a3/1d/b23984c05e39ddab35bbba33a3828dc4f896250220dcbd946c0fcad1e934/starlette-0.23.1-py3-none-any.whl (64 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.5/64.5 kB 10.6 MB/s eta 0:00:00
Collecting chardet<5,>=3.0.2 (from requests->transformers==4.25.1->-r requirements_versions.txt (line 2))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/19/c7/fa589626997dd07bd87d9269342ccb74b1720384a4d739a1872bd84fbe68/chardet-4.0.0-py2.py3-none-any.whl (178 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.7/178.7 kB 28.9 MB/s eta 0:00:00
Collecting idna<3,>=2.5 (from requests->transformers==4.25.1->-r requirements_versions.txt (line 2))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a2/38/928ddce2273eaa564f6f50de919327bf3a00f091b5baba8dfa9460f3a8a8/idna-2.10-py2.py3-none-any.whl (58 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.8/58.8 kB 11.9 MB/s eta 0:00:00
Requirement already satisfied: urllib3<1.27,>=1.21.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from requests->transformers==4.25.1->-r requirements_versions.txt (line 2)) (1.26.18)
Requirement already satisfied: certifi>=2017.4.17 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from requests->transformers==4.25.1->-r requirements_versions.txt (line 2)) (2023.7.22)
Requirement already satisfied: sympy in /root/.conda/envs/aigc/lib/python3.10/site-packages (from torch->-r requirements_versions.txt (line 10)) (1.11.1)
Collecting h11<0.13,>=0.11 (from httpcore<=0.15->-r requirements_versions.txt (line 29))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/60/0f/7a0eeea938eaf61074f29fed9717f2010e8d0e0905d36b38d3275a1e4622/h11-0.12.0-py3-none-any.whl (54 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.9/54.9 kB 9.6 MB/s eta 0:00:00
Collecting sniffio==1.* (from httpcore<=0.15->-r requirements_versions.txt (line 29))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/c3/a0/5dba8ed157b0136607c7f2151db695885606968d1fae123dc3391e0cfdbf/sniffio-1.3.0-py3-none-any.whl (10 kB)
Collecting anyio==3.* (from httpcore<=0.15->-r requirements_versions.txt (line 29))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/19/24/44299477fe7dcc9cb58d0a57d5a7588d6af2ff403fdd2d47a246c91a3246/anyio-3.7.1-py3-none-any.whl (80 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 80.9/80.9 kB 15.4 MB/s eta 0:00:00
Collecting exceptiongroup (from anyio==3.*->httpcore<=0.15->-r requirements_versions.txt (line 29))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/ad/83/b71e58666f156a39fb29417e4c8ca4bc7400c0dd4ed9e8842ab54dc8c344/exceptiongroup-1.1.3-py3-none-any.whl (14 kB)
Collecting toolz (from altair>=4.2.0->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/7f/5c/922a3508f5bda2892be3df86c74f9cf1e01217c2b1f8a0ac4841d903e3e9/toolz-0.12.0-py3-none-any.whl (55 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 55.8/55.8 kB 9.6 MB/s eta 0:00:00
Requirement already satisfied: filterpy in /root/.conda/envs/aigc/lib/python3.10/site-packages (from facexlib>=0.2.5->gfpgan==1.3.8->-r requirements_versions.txt (line 5)) (1.4.5)
Requirement already satisfied: numba in /root/.conda/envs/aigc/lib/python3.10/site-packages (from facexlib>=0.2.5->gfpgan==1.3.8->-r requirements_versions.txt (line 5)) (0.58.1)
Collecting attrs>=17.3.0 (from aiohttp->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/f0/eb/fcb708c7bf5056045e9e98f62b93bd7467eb718b0202e7698eb11d66416c/attrs-23.1.0-py3-none-any.whl (61 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.2/61.2 kB 10.6 MB/s eta 0:00:00
Requirement already satisfied: charset-normalizer<4.0,>=2.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from aiohttp->gradio==3.16.2->-r requirements_versions.txt (line 6)) (2.0.4)
Collecting multidict<7.0,>=4.5 (from aiohttp->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/56/b5/ac112889bfc68e6cf4eda1e4325789b166c51c6cd29d5633e28fb2c2f966/multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 114.5/114.5 kB 18.6 MB/s eta 0:00:00
Collecting async-timeout<5.0,>=4.0.0a3 (from aiohttp->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a7/fa/e01228c2938de91d47b307831c62ab9e4001e747789d0b05baf779a6488c/async_timeout-4.0.3-py3-none-any.whl (5.7 kB)
Collecting yarl<2.0,>=1.0 (from aiohttp->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/c9/d4/a5280faa1b8e9ad3a52ddc4c9aea94dd718f9c55f1e10cfb14580f5ebb45/yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 268.8/268.8 kB 32.1 MB/s eta 0:00:00
Collecting frozenlist>=1.1.1 (from aiohttp->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/1e/28/74b8b6451c89c070d34e753d8b65a1e4ce508a6808b18529f36e8c0e2184/frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (225 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 225.7/225.7 kB 28.6 MB/s eta 0:00:00
Collecting aiosignal>=1.1.2 (from aiohttp->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/76/ac/a7305707cb852b7e16ff80eaf5692309bde30e2b1100a1fcacdc8f731d97/aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
Collecting smmap<6,>=3.0.1 (from gitdb<5,>=4.0.1->GitPython==3.1.27->-r requirements_versions.txt (line 26))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a7/a5/10f97f73544edcdef54409f1d839f6049a0d79df68adbc1ceb24d1aaca42/smmap-5.0.1-py3-none-any.whl (24 kB)
Collecting jsonschema-specifications>=2023.03.6 (from jsonschema->jsonmerge==1.8.0->-r requirements_versions.txt (line 19))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/1c/24/83349ac2189cc2435e84da3f69ba3c97314d3c0622628e55171c6798ed80/jsonschema_specifications-2023.7.1-py3-none-any.whl (17 kB)
Collecting referencing>=0.28.4 (from jsonschema->jsonmerge==1.8.0->-r requirements_versions.txt (line 19))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/be/8e/56d6f1e2d591f4d6cbcba446cac4a1b0dc4f584537e2071d9bcee8eeab6b/referencing-0.30.2-py3-none-any.whl (25 kB)
Collecting rpds-py>=0.7.1 (from jsonschema->jsonmerge==1.8.0->-r requirements_versions.txt (line 19))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/2e/3f/8351c2313cab6750aaf01dcb28d1bd1fe5dfaf0262628fd8915e5f46856c/rpds_py-0.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 51.3 MB/s eta 0:00:00
Requirement already satisfied: python-dateutil>=2.8.2 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from pandas->gradio==3.16.2->-r requirements_versions.txt (line 6)) (2.8.2)
Collecting pytz>=2020.1 (from pandas->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/32/4d/aaf7eff5deb402fd9a24a1449a8119f00d74ae9c2efa79f8ef9994261fc2/pytz-2023.3.post1-py2.py3-none-any.whl (502 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 502.5/502.5 kB 47.7 MB/s eta 0:00:00
Collecting tzdata>=2022.1 (from pandas->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/d5/fb/a79efcab32b8a1f1ddca7f35109a50e4a80d42ac1c9187ab46522b2407d7/tzdata-2023.3-py2.py3-none-any.whl (341 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 341.8/341.8 kB 38.1 MB/s eta 0:00:00
Requirement already satisfied: absl-py>=0.4 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (2.0.0)
Requirement already satisfied: grpcio>=1.48.2 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (1.59.0)
Requirement already satisfied: google-auth<3,>=1.6.3 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (2.23.3)
Requirement already satisfied: google-auth-oauthlib<2,>=0.5 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (1.1.0)
Requirement already satisfied: markdown>=2.6.8 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (3.5)
Collecting protobuf<4.24,>=3.19.6 (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/01/cb/445b3e465abdb8042a41957dc8f60c54620dc7540dbcf9b458a921531ca2/protobuf-4.23.4-cp37-abi3-manylinux2014_x86_64.whl (304 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 304.5/304.5 kB 39.7 MB/s eta 0:00:00
Requirement already satisfied: setuptools>=41.0.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (68.0.0)
Requirement already satisfied: six>1.9 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (1.16.0)
Requirement already satisfied: tensorboard-data-server<0.8.0,>=0.7.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (0.7.2)
Requirement already satisfied: werkzeug>=1.0.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (3.0.1)
Collecting lightning-utilities>=0.8.0 (from torchmetrics>=0.7.0->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/46/ee/8641eeb6a062f383b7d6875604e1f3f83bd2c93a0b4dbcabd3150b32de6e/lightning_utilities-0.9.0-py3-none-any.whl (23 kB)
INFO: pip is looking at multiple versions of httpx to determine which version is compatible with other requirements. This could take a while.
Collecting httpx (from gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/ec/91/e41f64f03d2a13aee7e8c819d82ee3aa7cdc484d18c0ae859742597d5aa0/httpx-0.24.1-py3-none-any.whl (75 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.4/75.4 kB 12.2 MB/s eta 0:00:00
Collecting mdurl~=0.1 (from markdown-it-py[linkify,plugins]->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl (10.0 kB)
Collecting mdit-py-plugins (from markdown-it-py[linkify,plugins]->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/e5/3c/fe85f19699a7b40c8f9ce8ecee7e269b9b3c94099306df6f9891bdefeedd/mdit_py_plugins-0.4.0-py3-none-any.whl (54 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.1/54.1 kB 8.9 MB/s eta 0:00:00
Collecting linkify-it-py<3,>=1 (from markdown-it-py[linkify,plugins]->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/1f/1a/16b0d2f66601ba3081f1d4177087c79fd1f11d17706ee01d373e4ba8e00d/linkify_it_py-2.0.2-py3-none-any.whl (19 kB)
Requirement already satisfied: contourpy>=1.0.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from matplotlib->gradio==3.16.2->-r requirements_versions.txt (line 6)) (1.1.1)
Requirement already satisfied: cycler>=0.10 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from matplotlib->gradio==3.16.2->-r requirements_versions.txt (line 6)) (0.12.1)
Requirement already satisfied: fonttools>=4.22.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from matplotlib->gradio==3.16.2->-r requirements_versions.txt (line 6)) (4.43.1)
Requirement already satisfied: kiwisolver>=1.0.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from matplotlib->gradio==3.16.2->-r requirements_versions.txt (line 6)) (1.4.5)
Requirement already satisfied: pyparsing>=2.3.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from matplotlib->gradio==3.16.2->-r requirements_versions.txt (line 6)) (3.1.1)
Requirement already satisfied: mpmath>=0.19 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from sympy->torch->-r requirements_versions.txt (line 10)) (1.3.0)
Collecting click>=7.0 (from uvicorn->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl (97 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 97.9/97.9 kB 14.5 MB/s eta 0:00:00
Requirement already satisfied: importlib-metadata>=6.6.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from yapf->basicsr==1.4.2->-r requirements_versions.txt (line 4)) (6.8.0)
Requirement already satisfied: platformdirs>=3.5.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from yapf->basicsr==1.4.2->-r requirements_versions.txt (line 4)) (3.11.0)
Requirement already satisfied: tomli>=2.0.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from yapf->basicsr==1.4.2->-r requirements_versions.txt (line 4)) (2.0.1)
Requirement already satisfied: cachetools<6.0,>=2.0.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from google-auth<3,>=1.6.3->tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (5.3.2)
Requirement already satisfied: pyasn1-modules>=0.2.1 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from google-auth<3,>=1.6.3->tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (0.3.0)
Requirement already satisfied: rsa<5,>=3.1.4 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from google-auth<3,>=1.6.3->tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (4.9)
Requirement already satisfied: requests-oauthlib>=0.7.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from google-auth-oauthlib<2,>=0.5->tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (1.3.1)
Requirement already satisfied: zipp>=0.5 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from importlib-metadata>=6.6.0->yapf->basicsr==1.4.2->-r requirements_versions.txt (line 4)) (3.17.0)
Collecting uc-micro-py (from linkify-it-py<3,>=1->markdown-it-py[linkify,plugins]->gradio==3.16.2->-r requirements_versions.txt (line 6))
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/d1/1c/5aeb94aa980da111e4fd0c0fbe5ad95ed5bf9bd957f8e2a6178b85ff4da8/uc_micro_py-1.0.2-py3-none-any.whl (6.2 kB)
Requirement already satisfied: llvmlite<0.42,>=0.41.0dev0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from numba->facexlib>=0.2.5->gfpgan==1.3.8->-r requirements_versions.txt (line 5)) (0.41.1)
Requirement already satisfied: pyasn1<0.6.0,>=0.4.6 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (0.5.0)
Requirement already satisfied: oauthlib>=3.0.0 in /root/.conda/envs/aigc/lib/python3.10/site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<2,>=0.5->tensorboard>=2.9.1->pytorch_lightning==1.7.6->-r requirements_versions.txt (line 12)) (3.2.2)
Building wheels for collected packages: jsonmerge, antlr4-python3-runtime, font-roboto, ffmpy
  Building wheel for jsonmerge (setup.py) ... done
  Created wheel for jsonmerge: filename=jsonmerge-1.8.0-py3-none-any.whl size=17986 sha256=b36879c33ddab5932a10e7d3ffcb78f53bd56bba72bfc0fc4a53c4ab204ded3b
  Stored in directory: /root/.cache/pip/wheels/07/c3/5e/6a8e69ab073845575dea5bd69901cd491116cbb2a836efc162
  Building wheel for antlr4-python3-runtime (setup.py) ... done
  Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144554 sha256=c83589071e853ab09f081ef968a977a2ad6710f7023d4f5f7a0e1d63f1a2b0bb
  Stored in directory: /root/.cache/pip/wheels/b8/4f/a0/a50362e4d26eff643dc515033dffcb582b85e25272ce38a9c4
  Building wheel for font-roboto (setup.py) ... done
  Created wheel for font-roboto: filename=font_roboto-0.0.1-py3-none-any.whl size=2359735 sha256=f7f69457525a3702c8bc33c53d1df5d05fe260b0392a811ff36dd44e1d6b83db
  Stored in directory: /root/.cache/pip/wheels/1c/ed/5a/46236632571dd40f45eca43c5f6425de48368b1c32b8c2fed6
  Building wheel for ffmpy (setup.py) ... done
  Created wheel for ffmpy: filename=ffmpy-0.3.1-py3-none-any.whl size=5579 sha256=7a6cd8711e0d8ffe88819b4635e8c9cc8ce8b927c91fa9c2283f454066cff7b3
  Stored in directory: /root/.cache/pip/wheels/8c/d1/5d/1508b84d5504fcd2dc923aaaefda8bf36280160a6225f2b9be
Successfully built jsonmerge antlr4-python3-runtime font-roboto ffmpy
DEPRECATION: torchsde 0.2.5 has a non-standard dependency specifier numpy>=1.19.*; python_version >= "3.7". pip 24.0 will enforce this behaviour change. A possible replacement is to upgrade to a newer version of torchsde or contact the author to suggest that they release a version with a conforming dependency specifiers. Discussion can be found at https://github.com/pypa/pip/issues/12063
DEPRECATION: pytorch-lightning 1.7.6 has a non-standard dependency specifier torch>=1.9.*. pip 24.0 will enforce this behaviour change. A possible replacement is to upgrade to a newer version of pytorch-lightning or contact the author to suggest that they release a version with a conforming dependency specifiers. Discussion can be found at https://github.com/pypa/pip/issues/12063
Installing collected packages: trampoline, tokenizers, safetensors, resize-right, pytz, pydub, lark, fonts, font-roboto, ffmpy, einops, boltons, antlr4-python3-runtime, aenum, websockets, uc-micro-py, tzdata, toolz, sniffio, smmap, rpds-py, python-multipart, pyDeprecate, pydantic, pycryptodome, psutil, protobuf, Pillow, piexif, orjson, omegaconf, numpy, multidict, mdurl, lightning-utilities, inflection, idna, h11, frozenlist, exceptiongroup, deprecation, click, chardet, attrs, async-timeout, aiofiles, yarl, uvicorn, requests, referencing, PyWavelets, pandas, markdown-it-py, linkify-it-py, gitdb, blendmodes, anyio, aiosignal, torchsde, torchmetrics, torchdiffeq, starlette, scikit-image, mdit-py-plugins, kornia, jsonschema-specifications, httpcore, GitPython, aiohttp, accelerate, transformers, timm, jsonschema, httpx, fastapi, clean-fid, tensorboard, jsonmerge, altair, pytorch_lightning, gradio, realesrgan
  Attempting uninstall: safetensors
    Found existing installation: safetensors 0.4.0
    Uninstalling safetensors-0.4.0:
      Successfully uninstalled safetensors-0.4.0
  Attempting uninstall: protobuf
    Found existing installation: protobuf 4.24.4
    Uninstalling protobuf-4.24.4:
      Successfully uninstalled protobuf-4.24.4
  Attempting uninstall: Pillow
    Found existing installation: Pillow 10.0.1
    Uninstalling Pillow-10.0.1:
      Successfully uninstalled Pillow-10.0.1
  Attempting uninstall: numpy
    Found existing installation: numpy 1.24.3
    Uninstalling numpy-1.24.3:
      Successfully uninstalled numpy-1.24.3
  Attempting uninstall: idna
    Found existing installation: idna 3.4
    Uninstalling idna-3.4:
      Successfully uninstalled idna-3.4
  Attempting uninstall: requests
    Found existing installation: requests 2.31.0
    Uninstalling requests-2.31.0:
      Successfully uninstalled requests-2.31.0
  Attempting uninstall: scikit-image
    Found existing installation: scikit-image 0.22.0
    Uninstalling scikit-image-0.22.0:
      Successfully uninstalled scikit-image-0.22.0
  Attempting uninstall: timm
    Found existing installation: timm 0.9.8
    Uninstalling timm-0.9.8:
      Successfully uninstalled timm-0.9.8
Successfully installed GitPython-3.1.27 Pillow-9.4.0 PyWavelets-1.4.1 accelerate-0.12.0 aenum-3.1.15 aiofiles-23.2.1 aiohttp-3.8.6 aiosignal-1.3.1 altair-5.1.2 antlr4-python3-runtime-4.9.3 anyio-3.7.1 async-timeout-4.0.3 attrs-23.1.0 blendmodes-2022 boltons-23.0.0 chardet-4.0.0 clean-fid-0.1.29 click-8.1.7 deprecation-2.1.0 einops-0.4.1 exceptiongroup-1.1.3 fastapi-0.90.1 ffmpy-0.3.1 font-roboto-0.0.1 fonts-0.0.3 frozenlist-1.4.0 gitdb-4.0.11 gradio-3.16.2 h11-0.12.0 httpcore-0.15.0 httpx-0.24.1 idna-2.10 inflection-0.5.1 jsonmerge-1.8.0 jsonschema-4.19.1 jsonschema-specifications-2023.7.1 kornia-0.6.7 lark-1.1.2 lightning-utilities-0.9.0 linkify-it-py-2.0.2 markdown-it-py-3.0.0 mdit-py-plugins-0.4.0 mdurl-0.1.2 multidict-6.0.4 numpy-1.23.3 omegaconf-2.2.3 orjson-3.9.9 pandas-2.1.1 piexif-1.1.3 protobuf-4.23.4 psutil-5.9.6 pyDeprecate-0.3.2 pycryptodome-3.19.0 pydantic-1.10.13 pydub-0.25.1 python-multipart-0.0.6 pytorch_lightning-1.7.6 pytz-2023.3.post1 realesrgan-0.3.0 referencing-0.30.2 requests-2.25.1 resize-right-0.0.2 rpds-py-0.10.6 safetensors-0.2.7 scikit-image-0.19.2 smmap-5.0.1 sniffio-1.3.0 starlette-0.23.1 tensorboard-2.15.0 timm-0.6.7 tokenizers-0.13.3 toolz-0.12.0 torchdiffeq-0.2.3 torchmetrics-1.2.0 torchsde-0.2.5 trampoline-0.1.2 transformers-4.25.1 tzdata-2023.3 uc-micro-py-1.0.2 uvicorn-0.23.2 websockets-12.0 yarl-1.9.2
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
(aigc) [root@iZuf69qx2t0dhnq9rxy7mfZ stable-diffusion-webui]# python launch.py --listen --lowvram --no-half --skip-torch-cuda-test
Python 3.10.6 (main, Oct 24 2022, 16:07:47) [GCC 11.2.0]
Commit hash: 0cc0ee1bcb4c24a8c9715f66cede06601bfc00c8
Installing requirements for Web UI
Launching Web UI with arguments: --listen --lowvram --no-half --ckpt /root/models/Stable-diffusion/v1-5-pruned-emaonly.safetensors --lora-dir /root/models/Lora
/root/.conda/envs/aigc/lib/python3.10/site-packages/torchvision/transforms/functional_tensor.py:5: UserWarning: The torchvision.transforms.functional_tensor module is deprecated in 0.15 and will be **removed in 0.17**. Please don't rely on it. You probably just need to use APIs in torchvision.transforms.functional or in torchvision.transforms.v2.functional.
  warnings.warn(
Warning: caught exception 'Found no NVIDIA driver on your system. Please check that you have an NVIDIA GPU and installed a driver from http://www.nvidia.com/Download/index.aspx', memory monitor disabled
Traceback (most recent call last):
  File "/root/stable-diffusion-webui/launch.py", line 361, in <module>
    start()
  File "/root/stable-diffusion-webui/launch.py", line 352, in start
    import webui
  File "/root/stable-diffusion-webui/webui.py", line 15, in <module>
    from modules import import_hook, errors, extra_networks, ui_extra_networks_checkpoints
  File "/root/stable-diffusion-webui/modules/ui_extra_networks_checkpoints.py", line 6, in <module>
    from modules import shared, ui_extra_networks, sd_models
  File "/root/stable-diffusion-webui/modules/sd_models.py", line 17, in <module>
    from modules.sd_hijack_inpainting import do_inpainting_hijack
  File "/root/stable-diffusion-webui/modules/sd_hijack_inpainting.py", line 7, in <module>
    import ldm.models.diffusion.ddpm
  File "/root/stable-diffusion-webui/repositories/stable-diffusion-stability-ai/ldm/models/diffusion/ddpm.py", line 12, in <module>
    import pytorch_lightning as pl
  File "/root/.conda/envs/aigc/lib/python3.10/site-packages/pytorch_lightning/__init__.py", line 34, in <module>
    from pytorch_lightning.callbacks import Callback  # noqa: E402
  File "/root/.conda/envs/aigc/lib/python3.10/site-packages/pytorch_lightning/callbacks/__init__.py", line 25, in <module>
    from pytorch_lightning.callbacks.progress import ProgressBarBase, RichProgressBar, TQDMProgressBar
  File "/root/.conda/envs/aigc/lib/python3.10/site-packages/pytorch_lightning/callbacks/progress/__init__.py", line 22, in <module>
    from pytorch_lightning.callbacks.progress.rich_progress import RichProgressBar  # noqa: F401
  File "/root/.conda/envs/aigc/lib/python3.10/site-packages/pytorch_lightning/callbacks/progress/rich_progress.py", line 20, in <module>
    from torchmetrics.utilities.imports import _compare_version
ImportError: cannot import name '_compare_version' from 'torchmetrics.utilities.imports' (/root/.conda/envs/aigc/lib/python3.10/site-packages/torchmetrics/utilities/imports.py)

到这里报错了,尝试了重装torchmetrics库:

(aigc) [root@iZuf69qx2t0dhnq9rxy7mfZ stable-diffusion-webui]# pip install --force-reinstall torchmetrics

没解决,搞不定,溜了溜了哈哈

GPT给出的建议: 解决此问题的方法可能包括:

  1. 检查torchmetrics库是否安装正确。你可以尝试重新安装torchmetrics并确保安装的是兼容的版本。

  2. 检查依赖关系。可能存在torchmetrics依赖的其他库存在版本冲突的情况。你可以尝试检查依赖关系并更新或回滚特定的库版本。

  3. 检查Python环境。确认你的Python环境中包含的库版本是否与该应用程序的要求匹配。你可以考虑创建一个虚拟环境,并在其中重新安装所有必要的依赖项。

  4. 检查Python代码。检查你的代码中是否有与导入相关的问题,例如名称错误、路径问题等。