Embedded Python Does Not Work Pointing To Python35.zip With Numpy - How To Fix?
Okay here's the basic example from the Python website for a simple runpy.exe to run Python scripts below. It works fine using Visual Studio 2015 on x64 Windows after referencing t
Solution 1:
This does not work because numpy is not in the zipfile python35.zip
.
The runpy-program sets the path to python35.zip
: It is thus the only path in the Pythonpath for this programs exception...
You have to add the parent-folder of your local numpy-folder also to the Pythonpath to make it working.
Post a Comment for "Embedded Python Does Not Work Pointing To Python35.zip With Numpy - How To Fix?"