After successfully generating C code from Python using Cython and compiling this C code to exe I need to compile this code with Python dependencies (e.g Numpy). To generate C code I'm using
cython.exe test.py --embed -3
Then compiling this C code to exe using MSVC but when I run file I get error
Traceback (most recent call last):
File "test.py", line 1, in init test
import numpy
ModuleNotFoundError: No module named 'numpy'