#c #numpy #matplotlib #visual-studio-2019
Вопрос:
Я пытаюсь установить matplotlib-cpp в своей среде C (Visual Studio 2019), чтобы выполнить визуализацию данных. Я настроил все файлы «включить», файлы «дополнительно включить» и файл «библиотека» для подключения Visual Studio к моему каталогу Python.
Я пытаюсь построить примерную фигуру:
#include "matplotlibcpp.h"
namespace plt = matplotlibcpp;
int main()
{
plt::plot({1, 2, 3});
plt::show();
}
Но я получаю ошибку:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.
We have compiled some common reasons and troubleshooting tips at:
https://numpy.org/devdocs/user/troubleshooting-importerror.html
Please note and check the following:
* The Python version is: Python3.9 from "C:UsersxxxxxsourcereposProjectNamex64DebugProjectName.exe"
* The NumPy version is: "1.21.2"
and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.
Original error was: No module named 'numpy.core._multiarray_umath'
- Версия Python: 3.9.0
- Версия NumPy : 1.21.2
Я уже обновил/переустановил NumPy и Matplotlib с pip
помощью .
Комментарии:
1. Похоже, вы пытаетесь связать библиотеку x86 с вашим проектом x64.
2. @CoryKramer если я настрою проект на x86, Python больше не распознается. Я думаю, что matplotlib-cpp не имеет версии x64.
3. Похоже, у них есть интеграция CMake. Если вы настроите свой проект на использование CMake, то это будет так же просто, как
find_package(matplotlib_cpp REQUIRED)