Неустранимая ошибка Python: Py_Initialize: невозможно загрузить кодек файловой системы и ModuleNotFoundError - PullRequest
0 голосов
/ 30 марта 2019

Намерение

Я хочу получить доступ к функции python из C ++ и использую C ++ 17 и Python 3.7.3.

Настройки проекта Visual Studio

  • C / C ++> Общие> Дополнительные каталоги включения> "D: \ Program \ vcpkg \ instal \ x64-windows \ include \ python3.6"
  • Linker> General> Дополнительные каталоги библиотек> "D: \Программа \ vcpkg \ Установленный \ x64-windows \ lib "
  • Компоновщик> Ввод> Дополнительные зависимости> python36.lib; ...

Main.cpp

#include <Python.h>
#include <iostream>
#include "tchar.h"

int _tmain(int argc, _TCHAR* argv[])
{
    printf("Calling Python to find the sum of 2 and 2.\n");

    // Initialize the Python interpreter.
    Py_Initialize();

    // Create some Python objects that will later be assigned values.
    PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pValue;

    // Convert the file name to a Python string.
    pName = PyUnicode_FromString("Sample");

    // Import the file as a Python module.
    pModule = PyImport_Import(pName);

    // Create a dictionary for the contents of the module.
    pDict = PyModule_GetDict(pModule);

    // Get the add method from the dictionary.
    pFunc = PyDict_GetItemString(pDict, "add");

    // Create a Python tuple to hold the arguments to the method.
    pArgs = PyTuple_New(2);

    // Convert 2 to a Python integer.
    pValue = PyLong_FromLong(2);

    // Set the Python int as the first and second arguments to the method.
    PyTuple_SetItem(pArgs, 0, pValue);
    PyTuple_SetItem(pArgs, 1, pValue);

    // Call the function with the arguments.
    PyObject* pResult = PyObject_CallObject(pFunc, pArgs);

    // Print a message if calling the method failed.
    if (pResult == NULL)
        printf("Calling the add method failed.\n");

    // Convert the result to a long from a Python object.
    long result = PyLong_AsLong(pResult);

    // Destroy the Python interpreter.
    Py_Finalize();

    // Print the result.
    printf("The result is %d.\n", result); std::cin.ignore(); return 0;
}

Sample.py

# Returns the sum of two numbers.
def add(a, b):
    return a + b

Мои каталоги

каталог файлов

выпускная версия

каталог решений

Ошибка

Calling Python to find the sum of 2 and 2.
Fatal Python error: Py_Initialize: unable to load the file system codec
ModuleNotFoundError: No module named 'encodings'

Current thread 0x00003ca0 (most recent call first):

1 Ответ

0 голосов
/ 31 марта 2019

Я нашел рабочее решение от @ Calvin1602 (пользователь Stackoverflow) из этого поста Сбой Py_Initialize - невозможно загрузить кодек файловой системы

Я только что столкнулся с точно такой же проблемой (та же версия Python, ОС, код и т. Д.).

Вам просто нужно скопировать каталог Python Lib / в вашей программе рабочий каталог (в VC это каталог, где находится .vcproj)

...