Created
January 22, 2023 17:15
-
-
Save morgan9e/c33988bb97d7bccf66cb685afa4940c2 to your computer and use it in GitHub Desktop.
video2x install script (ubuntu)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo add-apt-repository ppa:graphics-drivers/ppa | |
sudo dpkg --add-architecture i386 | |
sudo apt update && sudo apt upgrade | |
sudo apt install -y aptitude libvulkan1 libvulkan1:i386 | |
sudo aptitude install -y nvidia-driver-525 | |
sudo apt-get install -y --no-install-recommends \ | |
python3-pip libvulkan-dev glslang-dev glslang-tools \ | |
build-essential swig ffmpeg ninja-build | |
pip install -U pip wheel pdm-pep517 setuptools setuptools-scm | |
pip install ffmpeg-python loguru opencv-python==4.5.5.64 pillow pynput rich | |
pip install waifu2x-ncnn-vulkan-python srmd-ncnn-vulkan-python realsr-ncnn-vulkan-python rife-ncnn-vulkan-python realcugan-ncnn-vulkan-python | |
git clone https://github.com/k4yt3x/video2x.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks