matplotlib-cpp
matplotlib-cpp copied to clipboard
Error 0xC000007B
I got this runtime error code 0xC000007B.
Source Code:
#define _USE_MATH_DEFINES
#include <iostream>
#include <matplotlib/matplotlibcpp.h>
namespace plt = matplotlibcpp;
int main() {
plt::plot({1,3,2,4});
plt::show();
return 0;
}
- I already linked the
-lpython39orlibpython39.a. - I have already included the header directory of numpy core, matplotlib, and python correctly. (i changed the include path of matplotlib)
- I have also placed
python39.dllon system32 folder (windows OS) - I don't have any compilation and linking errors at all.
can you post the actual error output?