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

Difference between revisions of "Installing ESRGAN and/or BasicSR on Arch Linux"

From Upscale Wiki
Jump to navigation Jump to search
m (Protected "Installing ESRGAN and/or BasicSR on Arch Linux" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)))
(drop some bulk)
Line 6: Line 6:
 
# We will install the requirements:
 
# We will install the requirements:
 
#* If you have and use a '''NVIDIA GPU''' enter the following into the terminal:
 
#* If you have and use a '''NVIDIA GPU''' enter the following into the terminal:
#*: <code>yay -S cuda cudnn python-pip python-pytorch-cuda python-torchvision opencv opencv-samples hdf5 vtk lmdb python-lmdb tensorboard python-tensorboardx</code>
+
#*: <code>yay -S cuda python-pytorch-cuda python-torchvision opencv</code>
 
#* If you '''don't have a NVIDIA GPU (AMD or Intel)''' enter the following into the terminal:
 
#* If you '''don't have a NVIDIA GPU (AMD or Intel)''' enter the following into the terminal:
#*: <code>yay -S python-pip python-pytorch python-torchvision opencv opencv-samples hdf5 vtk lmdb python-lmdb tensorboard python-tensorboardx</code>
+
#*: <code>yay -S python-pip python-pytorch python-torchvision opencv</code>
 
# Cloning ESRGAN and or BasicSR (If you don't want one or the other, just leave it out)  
 
# Cloning ESRGAN and or BasicSR (If you don't want one or the other, just leave it out)  
 
#: <ol style="list-style-type:lower-alpha"><li>To clone ESRGAN (old architecture) Go into the folder where you want to put the ESRGAN folder/installation in, then clone it by entering the following into the terminal:<br /><code>git clone https://github.com/xinntao/ESRGAN/tree/aceb85730832001ec1fa3a77bd6856b75e1d0e87</code></li><li>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:<br /><code>git clone https://github.com/victorca25/BasicSR</code></li></ol>
 
#: <ol style="list-style-type:lower-alpha"><li>To clone ESRGAN (old architecture) Go into the folder where you want to put the ESRGAN folder/installation in, then clone it by entering the following into the terminal:<br /><code>git clone https://github.com/xinntao/ESRGAN/tree/aceb85730832001ec1fa3a77bd6856b75e1d0e87</code></li><li>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:<br /><code>git clone https://github.com/victorca25/BasicSR</code></li></ol>
  
 
That was it.
 
That was it.

Revision as of 20:22, 23 February 2020

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

  1. 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
  1. We will install the requirements:
    • If you have and use a NVIDIA GPU enter the following into the terminal:
      yay -S cuda python-pytorch-cuda python-torchvision opencv
    • If you don't have a NVIDIA GPU (AMD or Intel) enter the following into the terminal:
      yay -S python-pip python-pytorch python-torchvision opencv
  2. Cloning ESRGAN and or BasicSR (If you don't want one or the other, just leave it out)
    1. To clone ESRGAN (old architecture) 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/xinntao/ESRGAN/tree/aceb85730832001ec1fa3a77bd6856b75e1d0e87
    2. 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

That was it.