Extension module (*.so) is not produced after using f2py
I use Win7, and installed Anaconda for python and gfortran (MINGW) for fortran.
After using f2py, I cannot find a extension module file.
I tried the example in the following links:
Three ways to wrap
F2PY - Calling Fortran routines from Python
If I type as follows in the Anaconda prompt,
<base> C:CodesF2PY> f2py -c --fcompiler=gfortran -m fib1 fib1.f
Then, fib1.cp36-win_amd64.pyd
file and fib1
folder is generated.
.libs
folder is located under the fib
folder, and there exists libfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64
file in the .libs
folder.
However, the expected extension module (fib1.so
) is not generated.
Is there anything I missed?
I already checked gfortran and python are working well seprately.
C:CodesF2PY>f2py -c --fcompiler=gfortran -m fib1 fib1.f
C:CodesF2PY>call "D:AnacondaScripts\..python.exe" "D:AnacondaScripts\f2py.py" -c --fcompiler=gfortran -m fib1 fib1.f
Unknown vendor: "gfortran"
running build
running config_cc
unifing config_cc, config, build_clib, build_ext,
build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext,
build commands --fcompiler options
running build_src
build_src
building extension "fib1" sources
f2py options:
f2py:>C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fib1module.c
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
Reading fortran codes...
Reading file 'fib1.f' (format:fix,strict)
Post-processing...
Block: fib1
Block: fib
Post-processing (stage 2)...
Building modules...
Building module "fib1"...
Constructing wrapper function "fib"...
fib(a,[n])
Wrote C/API module "fib1" to file "C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fib1module.c"
adding 'C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fortranobject.c' to sources.
adding 'C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6' to include_dirs.
copying D:Anacondalibsite-packagesnumpyf2pysrcfortranobject.c -> C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
copying D:Anacondalibsite-packagesnumpyf2pysrcfortranobject.h -> C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
build_src: building npy-pkg config files
running build_ext
No module named 'numpy.distutils._msvccompiler' in numpy.distutils; trying from distutils
customize MSVCCompiler
customize MSVCCompiler using build_ext
customize Gnu95FCompiler
Found executable C:MinGWbingfortran.exe
customize Gnu95FCompiler using build_ext
building 'fib1' extension
compiling C sources
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppData
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocal
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocalTemp
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocalTemptmpkzx_h7w_
C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726binHostX86x64link.exe /nologo
/INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:c:mingwlibgccmingw326.3.0 /LIBPATH:c:mingwlib /LIBPATH:D:Anacondalibs /LIBPATH:D:AnacondaPCbuildamd64 /LIBPATH:D:Anacondalibs /LIBPATH:D:AnacondaPCbuildamd64 /LIBPATH:"C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726ATLMFClibx64" /LIBPATH:"C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726libx64" /LIBPATH:"C:Program Files (x86)Windows Kits10lib10.0.17134.0ucrtx64" /LIBPATH:"C:Program Files (x86)Windows Kits10lib10.0.17134.0umx64" /EXPORT:PyInit_fib1
C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fib1module.obj C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fortranobject.obj C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaselibfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64.lib /OUT:.fib1.cp36-win_amd64.pyd /IMPLIB:C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fib1.cp36-win_amd64.lib
copying C:Users6829396AppDataLocalTemptmpo3wc2rbsRelease.libslibfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64.dll -> .fib1.libs
Removing build directory C:Users6829396AppDataLocalTemptmpo3wc2rbs
python f2py
add a comment |
I use Win7, and installed Anaconda for python and gfortran (MINGW) for fortran.
After using f2py, I cannot find a extension module file.
I tried the example in the following links:
Three ways to wrap
F2PY - Calling Fortran routines from Python
If I type as follows in the Anaconda prompt,
<base> C:CodesF2PY> f2py -c --fcompiler=gfortran -m fib1 fib1.f
Then, fib1.cp36-win_amd64.pyd
file and fib1
folder is generated.
.libs
folder is located under the fib
folder, and there exists libfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64
file in the .libs
folder.
However, the expected extension module (fib1.so
) is not generated.
Is there anything I missed?
I already checked gfortran and python are working well seprately.
C:CodesF2PY>f2py -c --fcompiler=gfortran -m fib1 fib1.f
C:CodesF2PY>call "D:AnacondaScripts\..python.exe" "D:AnacondaScripts\f2py.py" -c --fcompiler=gfortran -m fib1 fib1.f
Unknown vendor: "gfortran"
running build
running config_cc
unifing config_cc, config, build_clib, build_ext,
build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext,
build commands --fcompiler options
running build_src
build_src
building extension "fib1" sources
f2py options:
f2py:>C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fib1module.c
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
Reading fortran codes...
Reading file 'fib1.f' (format:fix,strict)
Post-processing...
Block: fib1
Block: fib
Post-processing (stage 2)...
Building modules...
Building module "fib1"...
Constructing wrapper function "fib"...
fib(a,[n])
Wrote C/API module "fib1" to file "C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fib1module.c"
adding 'C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fortranobject.c' to sources.
adding 'C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6' to include_dirs.
copying D:Anacondalibsite-packagesnumpyf2pysrcfortranobject.c -> C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
copying D:Anacondalibsite-packagesnumpyf2pysrcfortranobject.h -> C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
build_src: building npy-pkg config files
running build_ext
No module named 'numpy.distutils._msvccompiler' in numpy.distutils; trying from distutils
customize MSVCCompiler
customize MSVCCompiler using build_ext
customize Gnu95FCompiler
Found executable C:MinGWbingfortran.exe
customize Gnu95FCompiler using build_ext
building 'fib1' extension
compiling C sources
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppData
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocal
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocalTemp
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocalTemptmpkzx_h7w_
C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726binHostX86x64link.exe /nologo
/INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:c:mingwlibgccmingw326.3.0 /LIBPATH:c:mingwlib /LIBPATH:D:Anacondalibs /LIBPATH:D:AnacondaPCbuildamd64 /LIBPATH:D:Anacondalibs /LIBPATH:D:AnacondaPCbuildamd64 /LIBPATH:"C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726ATLMFClibx64" /LIBPATH:"C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726libx64" /LIBPATH:"C:Program Files (x86)Windows Kits10lib10.0.17134.0ucrtx64" /LIBPATH:"C:Program Files (x86)Windows Kits10lib10.0.17134.0umx64" /EXPORT:PyInit_fib1
C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fib1module.obj C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fortranobject.obj C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaselibfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64.lib /OUT:.fib1.cp36-win_amd64.pyd /IMPLIB:C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fib1.cp36-win_amd64.lib
copying C:Users6829396AppDataLocalTemptmpo3wc2rbsRelease.libslibfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64.dll -> .fib1.libs
Removing build directory C:Users6829396AppDataLocalTemptmpo3wc2rbs
python f2py
add a comment |
I use Win7, and installed Anaconda for python and gfortran (MINGW) for fortran.
After using f2py, I cannot find a extension module file.
I tried the example in the following links:
Three ways to wrap
F2PY - Calling Fortran routines from Python
If I type as follows in the Anaconda prompt,
<base> C:CodesF2PY> f2py -c --fcompiler=gfortran -m fib1 fib1.f
Then, fib1.cp36-win_amd64.pyd
file and fib1
folder is generated.
.libs
folder is located under the fib
folder, and there exists libfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64
file in the .libs
folder.
However, the expected extension module (fib1.so
) is not generated.
Is there anything I missed?
I already checked gfortran and python are working well seprately.
C:CodesF2PY>f2py -c --fcompiler=gfortran -m fib1 fib1.f
C:CodesF2PY>call "D:AnacondaScripts\..python.exe" "D:AnacondaScripts\f2py.py" -c --fcompiler=gfortran -m fib1 fib1.f
Unknown vendor: "gfortran"
running build
running config_cc
unifing config_cc, config, build_clib, build_ext,
build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext,
build commands --fcompiler options
running build_src
build_src
building extension "fib1" sources
f2py options:
f2py:>C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fib1module.c
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
Reading fortran codes...
Reading file 'fib1.f' (format:fix,strict)
Post-processing...
Block: fib1
Block: fib
Post-processing (stage 2)...
Building modules...
Building module "fib1"...
Constructing wrapper function "fib"...
fib(a,[n])
Wrote C/API module "fib1" to file "C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fib1module.c"
adding 'C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fortranobject.c' to sources.
adding 'C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6' to include_dirs.
copying D:Anacondalibsite-packagesnumpyf2pysrcfortranobject.c -> C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
copying D:Anacondalibsite-packagesnumpyf2pysrcfortranobject.h -> C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
build_src: building npy-pkg config files
running build_ext
No module named 'numpy.distutils._msvccompiler' in numpy.distutils; trying from distutils
customize MSVCCompiler
customize MSVCCompiler using build_ext
customize Gnu95FCompiler
Found executable C:MinGWbingfortran.exe
customize Gnu95FCompiler using build_ext
building 'fib1' extension
compiling C sources
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppData
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocal
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocalTemp
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocalTemptmpkzx_h7w_
C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726binHostX86x64link.exe /nologo
/INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:c:mingwlibgccmingw326.3.0 /LIBPATH:c:mingwlib /LIBPATH:D:Anacondalibs /LIBPATH:D:AnacondaPCbuildamd64 /LIBPATH:D:Anacondalibs /LIBPATH:D:AnacondaPCbuildamd64 /LIBPATH:"C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726ATLMFClibx64" /LIBPATH:"C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726libx64" /LIBPATH:"C:Program Files (x86)Windows Kits10lib10.0.17134.0ucrtx64" /LIBPATH:"C:Program Files (x86)Windows Kits10lib10.0.17134.0umx64" /EXPORT:PyInit_fib1
C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fib1module.obj C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fortranobject.obj C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaselibfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64.lib /OUT:.fib1.cp36-win_amd64.pyd /IMPLIB:C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fib1.cp36-win_amd64.lib
copying C:Users6829396AppDataLocalTemptmpo3wc2rbsRelease.libslibfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64.dll -> .fib1.libs
Removing build directory C:Users6829396AppDataLocalTemptmpo3wc2rbs
python f2py
I use Win7, and installed Anaconda for python and gfortran (MINGW) for fortran.
After using f2py, I cannot find a extension module file.
I tried the example in the following links:
Three ways to wrap
F2PY - Calling Fortran routines from Python
If I type as follows in the Anaconda prompt,
<base> C:CodesF2PY> f2py -c --fcompiler=gfortran -m fib1 fib1.f
Then, fib1.cp36-win_amd64.pyd
file and fib1
folder is generated.
.libs
folder is located under the fib
folder, and there exists libfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64
file in the .libs
folder.
However, the expected extension module (fib1.so
) is not generated.
Is there anything I missed?
I already checked gfortran and python are working well seprately.
C:CodesF2PY>f2py -c --fcompiler=gfortran -m fib1 fib1.f
C:CodesF2PY>call "D:AnacondaScripts\..python.exe" "D:AnacondaScripts\f2py.py" -c --fcompiler=gfortran -m fib1 fib1.f
Unknown vendor: "gfortran"
running build
running config_cc
unifing config_cc, config, build_clib, build_ext,
build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext,
build commands --fcompiler options
running build_src
build_src
building extension "fib1" sources
f2py options:
f2py:>C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fib1module.c
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
Reading fortran codes...
Reading file 'fib1.f' (format:fix,strict)
Post-processing...
Block: fib1
Block: fib
Post-processing (stage 2)...
Building modules...
Building module "fib1"...
Constructing wrapper function "fib"...
fib(a,[n])
Wrote C/API module "fib1" to file "C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fib1module.c"
adding 'C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6fortranobject.c' to sources.
adding 'C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6' to include_dirs.
copying D:Anacondalibsite-packagesnumpyf2pysrcfortranobject.c -> C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
copying D:Anacondalibsite-packagesnumpyf2pysrcfortranobject.h -> C:Users6829396AppDataLocalTemptmpkzx_h7w_src.win-amd64-3.6
build_src: building npy-pkg config files
running build_ext
No module named 'numpy.distutils._msvccompiler' in numpy.distutils; trying from distutils
customize MSVCCompiler
customize MSVCCompiler using build_ext
customize Gnu95FCompiler
Found executable C:MinGWbingfortran.exe
customize Gnu95FCompiler using build_ext
building 'fib1' extension
compiling C sources
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppData
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocal
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocalTemp
creating C:Users6829396AppDataLocalTemptmpkzx_h7w_ReleaseUsers6829396AppDataLocalTemptmpkzx_h7w_
C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726binHostX86x64link.exe /nologo
/INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:c:mingwlibgccmingw326.3.0 /LIBPATH:c:mingwlib /LIBPATH:D:Anacondalibs /LIBPATH:D:AnacondaPCbuildamd64 /LIBPATH:D:Anacondalibs /LIBPATH:D:AnacondaPCbuildamd64 /LIBPATH:"C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726ATLMFClibx64" /LIBPATH:"C:Program Files (x86)Microsoft Visual Studio2017CommunityVCToolsMSVC14.15.26726libx64" /LIBPATH:"C:Program Files (x86)Windows Kits10lib10.0.17134.0ucrtx64" /LIBPATH:"C:Program Files (x86)Windows Kits10lib10.0.17134.0umx64" /EXPORT:PyInit_fib1
C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fib1module.obj C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fortranobject.obj C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaselibfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64.lib /OUT:.fib1.cp36-win_amd64.pyd /IMPLIB:C:Users6829396AppDataLocalTemptmpo3wc2rbsReleaseUsers6829396AppDataLocalTemptmpo3wc2rbssrc.win-amd64-3.6fib1.cp36-win_amd64.lib
copying C:Users6829396AppDataLocalTemptmpo3wc2rbsRelease.libslibfib1.5W62YGKMVL6PD3QLPPSXTQ2OGA5LRIRQ.gfortran-win_amd64.dll -> .fib1.libs
Removing build directory C:Users6829396AppDataLocalTemptmpo3wc2rbs
python f2py
python f2py
edited Nov 16 '18 at 7:07
Sehwan
asked Nov 16 '18 at 5:12
SehwanSehwan
12
12
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331805%2fextension-module-so-is-not-produced-after-using-f2py%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331805%2fextension-module-so-is-not-produced-after-using-f2py%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown