akai-katto / dandere2x

Dandere2x - Fast Waifu2x Video Upscaling.
https://www.reddit.com/r/Dandere2x/
GNU General Public License v3.0
1.45k stars 77 forks source link

Pyyaml 5.4 caused building wheels error - Linux #297

Open M-Atkins opened 1 year ago

M-Atkins commented 1 year ago

Running pip3 install -r requirements.txt caused "Failed building wheel" error.

Installing the latest version of pyyaml with pip install pyyaml fixed this.

Also changing:

#include "Block.h"

To:

#include "Block.h"
#include <cstdint>

In dandere2x_cpp/plugins/block_plugins/Block.cpp was necessary to get installation working on my system (Arch Linux)

KRDucky commented 3 months ago

yeah, there are CPP memory leaks etc in the files. Had to fix them to get even the cpp part to compile. Ive linked to the fixes. DiamondSearch CPP File DiamondSearch H file