This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I have a list with roughly 3000 items (every item is a list of 10points). One item might look like this: [['-19.05364812189936' '-8.078571934798015'] ['-4.481956059532247' '10.88512402551382'] ['-15.985506732813608' '-19.92397590361446'] ['-1.2933416017009214' '-10.233128986534373'] ['-19.640113394755492' '2.7974946846208364'] ['-9.466119773210488' '1.8171420978029766'] ['4.998052799433026' '-0.5782990786676117'] ['-7.883010276399716' '-9.731805457122608'] ['-2.754521615875266' '-18.244450744153085'] ['-17.105912473423103' '13.09440644932672'] ['right' '0']] What I want in the end is [...] read more
I trying to implement python (3.6 anaconda x64) to c++. For It I implement Python.h, python36.dll,python36.lib. Anaconda added itself to Path. Problem is here: When I call Py_Initialize(); It gives me This error(I also wonder you get PythonHome): Py_GetPythonHome: (null) Py_GetPrefix: Py_GetPath: C:\Users\elnur\source\repos\Neural Net\x64\Release\python36.zip;.\DLLs;.\lib;C:\Users\elnur\source\repos\Neural Net\x64\Release Before Fatal Python error: Py_Initialize: [...] read more