Skip to content
Advertisement

f2py: Python does not import module

I would like to import an Fortran module into python with f2py.

I successfully compiled the module with the command f2py -c primes.f90 -m primes.

This command generates primes.cp39-win_amd64.pyd and an directory:

JavaScript

When I am trying to import the module as described here with import primes it imports something but not the module. So e.g I cannot see the docstring or access the functions.

I suspect that Python tries to import the folder ‘primes’ and not the module itself.

How can I fix this?

Thanks.

EDIT:

I have used the example from here to demonstrate the problem:

My Python code to showcase the problem:

JavaScript

Actual return:

JavaScript

Edit 1

I have followed up the suggestion of @roygvib. I have tried several versions of python and conda and part of the problem seems the be that I was using the systems interpreter for compiling the module and the conda for running the python code.

For all the other combinations the following exception is raised:

JavaScript

can be translated to:

JavaScript

So the actual error was that no error was raised in the given combination.

Advertisement

Answer

The solution from @zlamere from this github issue worked for me.

instead of f2py -c primes.f90 -m primes I used python -m numpy.f2py -c --fcompiler=gnu95 --compiler=mingw32 primes.f90 -m primes

I don’t know why this command works and the other one doesn’t.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement