diff --git a/src/video2x_setup_ubuntu.sh b/src/video2x_setup_ubuntu.sh index c9f869a..7df6762 100755 --- a/src/video2x_setup_ubuntu.sh +++ b/src/video2x_setup_ubuntu.sh @@ -2,7 +2,7 @@ # Name: Video2X Setup Script (Ubuntu) # Creator: K4YT3X # Date Created: June 5, 2020 -# Last Modified: June 13, 2020 +# Last Modified: July 25, 2020 # help message if input is incorrect of if -h/--help is specified if [ "$1" == "-h" ] || [ "$1" == "--help" ] || [ "$#" -gt 2 ]; then @@ -12,16 +12,16 @@ fi # set intallation path if specified if [ ! -z "$1" ]; then - INSTALLATION_PATH=$1 + export INSTALLATION_PATH=$1 else - INSTALLATION_PATH="$HOME/.local/share" + export INSTALLATION_PATH="$HOME/.local/share" fi # set temp directory location if specified if [ ! -z "$2" ]; then - TEMP=$2 + export TEMP=$2 else - TEMP="/tmp/video2x" + export TEMP="/tmp/video2x" fi # environment variables @@ -181,25 +181,39 @@ wget "$download_link" -O "$realsr_ncnn_vulkan_zip" unzip "$realsr_ncnn_vulkan_zip" -d $TEMP/realsr-ncnn-vulkan mv -v $TEMP/realsr-ncnn-vulkan/realsr-ncnn-vulkan-*-linux $INSTALLATION_PATH/video2x/src/dependencies/realsr-ncnn-vulkan -# rewrite config file values -python3.8 - << EOF -import yaml +# install anime4kcpp +#apt-fast install -y --no-install-recommends build-essential cmake libopencv-dev beignet-opencl-icd mesa-opencl-icd ocl-icd-opencl-dev opencl-headers +#git clone --recurse-submodules --depth=1 --progress https://github.com/TianZerL/Anime4KCPP.git $TEMP/anime4kcpp +#mkdir -v $TEMP/anime4kcpp/build +#cd $TEMP/anime4kcpp/CLI/build +#cmake -DBuild_GUI=OFF .. +#make -j$(nproc) +#mv -v $TEMP/anime4kcpp/build $INSTALLATION_PATH/video2x/src/dependencies/anime4kcpp +#mv -v $TEMP/anime4kcpp/models_rgb $INSTALLATION_PATH/video2x/src/dependencies/anime4kcpp/models_rgb -with open('/video2x/src/video2x.yaml', 'r') as template: +# rewrite config file values +python3.8 - <