設定:win10 + vs2015(デバッグ32ビット)+ anaconda3(32ビット)それが実行C++用のpython3、実行エラー
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <Python.h>
#include <string.h>
using namespace std;
int main()
{
Py_Initialize();
PyRun_SimpleString("import pylab");
PyRun_SimpleString("pylab.plot(range(5))");
PyRun_SimpleString("pylab.show()");
Py_Exit(0);
return 0;
}
、プログラムがクラッシュ。
これは関連性がありますか? http://stackoverflow.com/questions/38132755/importerror-no-module-named-encodingsまた、このスレッドを確認してください:https://bugs.python.org/issue27054 – AndyG
環境変数が正しく設定されていることを確認してください。 'PYTHONHOME'。 – zmo