Duodecimus
Duodecimus
I believe this is caused by a formatting error in krita_diff_plugin_scripts.ini Combobox dropdown lists are being stored as `[[\"left\", \"left\"], [\"right\", \"right\"], [\"up\", \"up\"], [\"down\", \"down\"]]` In python, this is...
In setup.py there are two places it has c++14. change these to c++17 This lets me compile it with `python setup.py build_ext --inplace`, but attempting to install the build with...
The environment variable TORCH_CUDA_ARCH_LIST in PyTorch should be set to specify the CUDA architectures that you want PyTorch to build for when compiling CUDA kernels. Each architecture is specified by...
in the original version of charactergen, .glb models are colored used vertex colors. These aren't displayed by default in blender, but you can still recover them. I think blender will...
`fatal error C1189: #error: -- unsupported Microsoft Visual Studio version! Only the versions between 2017 and 2022 (inclusive) are supported! The nvcc flag '-allow-unsupported-compiler' can be used to override this...
Open a cmd window, navigate to the location of build.ninja, and manually build it. I think the command is 'ninja build.ninja' This will almost certainly fail, but it will tell...
DLL not found is just a pathing issue. Either add the path to the pyd file to your environment path, or copy them to somewhere they will be found. I...
This is a bug in StableFast3D actually. If you track it down, you'll eventually find that the root cause is a function that builds directories to find models in. the...
In my Lib\site-packages\pytorch3d folder I have a file named `_C.cp311-win_amd64.pyd`. Your error is it failing to find or open that file. Language shouldn't matter, but if the pyd file is...
Ninja has some trouble building the nvdiffrast pyd files on windows. Open cmd, navigate to a folder in a place like `C:\Users\Owner\AppData\Local\torch_extensions\torch_extensions\Cache\py311_cu121\nvdiffrast_plugin_gl` check that the folder contains build.ninja run `ninja...