Open M-Atkins opened 1 year ago
Running pip3 install -r requirements.txt caused "Failed building wheel" error.
pip3 install -r requirements.txt
Installing the latest version of pyyaml with pip install pyyaml fixed this.
pip install pyyaml
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)
dandere2x_cpp/plugins/block_plugins/Block.cpp
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
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:
To:
In
dandere2x_cpp/plugins/block_plugins/Block.cpp
was necessary to get installation working on my system (Arch Linux)