I created some Cython
files, and import them in a Python
file using,
import pyximport
pyximport.install()
import Cython_Mod1
import Cython_Mod2
When I run the py
file, the C
compiler (VC++14
) generated the following errors
Cython_Mod1.obj : warning LNK4197: export 'PyInit_Cython_Mod1' specified multiple times; using first specification
for each Cython
module.
How to fix this and does it affect the performance or can be erroneous in the execution.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…