When I follow the installation instructions, python setup.py build_ext --inplace creates a file with name FortFlex.cpython-36m-x86_64-linux-gnu.so in directory FortFlex.cpython-36m-x86_64-linux-gnu.so.
When then I run python setup.py install, I get the error
error: can't copy 'reflexible/conv2netcdf4/FortFlex.so': doesn't exist
or not a regular file
After creating a symlink in that directory,
ln -s FortFlex.cpython-36m-x86_64-linux-gnu.so FortFlex.so
the installation works.
When I follow the installation instructions,
python setup.py build_ext --inplacecreates a file with nameFortFlex.cpython-36m-x86_64-linux-gnu.soin directoryFortFlex.cpython-36m-x86_64-linux-gnu.so.When then I run
python setup.py install, I get the errorAfter creating a symlink in that directory,
the installation works.