Info-icon.png We have moved to https://openmodeldb.info/. This new site has a tag and search system, which will make finding the right models for you much easier! If you have any questions, ask here: https://discord.gg/cpAUpDK

Installing ESRGAN and/or BasicSR on Arch Linux

From Upscale Wiki
Revision as of 01:03, 31 January 2021 by Alsa (talk | contribs) (Fixed error)

Jump to navigation Jump to search

For this guide you will need either Arch Linux or another Linux Distribution that is based on it.

Guide Dependencies

If you don't have them installed already, you will need base-devel, git and yay to follow the steps of this guide: Open the terminal and enter:

sudo pacman -S base-devel git && git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si && cd .. && rm -rf yay

ESRGAN / BasicSR dependencies

  • If you have and use a NVIDIA GPU enter the following into the terminal:
    yay -S python-pytorch-opt-cuda python-torchvision opencv
  • If you don't have a NVIDIA GPU (AMD or Intel) enter the following into the terminal:
    yay -S python-pytorch-opt python-torchvision opencv

Cloing / Installing ESRGAN

To clone ESRGAN (old architecture / BlueAmulet Fork) Go into the folder where you want to put the ESRGAN folder/installation in, then clone it by entering the following into the terminal: git clone https://github.com/JoeyBallentine/ESRGAN.git

Cloning / Installing BasicSR

To clone BasicSR (Victorc's fork) Go into the folder where you want to put the BasicSR folder/installation in, then clone it by entering the following into the terminal:
git clone https://github.com/victorca25/BasicSR