fatal error LNK1104: cannot open file ‘python310.lib’
Why is it even searching for python310.lib not python310_d.lib? Also, the Python3_LIBRARY option points to the python310.lib, so no clue why it can’t find it. It’s not an admin right’s issue because Debug without PARAVIEW_USE_PYTHON compiles just fine.
This is Python.h using “autolinking”. There’s a #pragma in the header that tells the linker "link to python310.lib", but no path is provided, so you get this error. There’s a patch to Python (that hasn’t been accepted yet) to allow projects to skip this, but in the meantime, some have managed to do this, but I don’t remember exactly how.